From 78de3a591e117ec48d9eb245cbd263ec69f53695 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Thu, 15 Aug 2024 08:44:16 -0400 Subject: [PATCH 01/32] chore: wip move community source data to locations subheading --- app/formSchema/analyst/cbc/locations.ts | 50 +++++++++++++++ .../analyst/cbc/locationsAndCounts.ts | 14 +---- app/formSchema/analyst/cbc/review.ts | 7 +++ .../uiSchema/cbc/editLocationsUiSchema.ts | 22 +++++++ app/formSchema/uiSchema/cbc/editUiSchema.ts | 5 ++ .../cbc/locationsAndCountsUiSchema.ts | 12 ---- .../uiSchema/cbc/locationsUiSchema.ts | 24 +++++++ app/formSchema/uiSchema/cbc/reviewUiSchema.ts | 6 +- .../theme/fields/ArrayLocationDataField.tsx | 41 ++++++++++++ .../custom/CommunitySourceObjectWidget.tsx | 62 +++++++++++++++++++ app/pages/analyst/cbc/[cbcId].tsx | 51 +++++++++++++++ app/utils/schemaUtils.ts | 19 ++++-- 12 files changed, 281 insertions(+), 32 deletions(-) create mode 100644 app/formSchema/analyst/cbc/locations.ts create mode 100644 app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/locationsUiSchema.ts create mode 100644 app/lib/theme/fields/ArrayLocationDataField.tsx create mode 100644 app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx diff --git a/app/formSchema/analyst/cbc/locations.ts b/app/formSchema/analyst/cbc/locations.ts new file mode 100644 index 0000000000..c6cd0e2bc6 --- /dev/null +++ b/app/formSchema/analyst/cbc/locations.ts @@ -0,0 +1,50 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const locations: RJSFSchema = { + title: 'Locations', + description: '', + type: 'object', + required: [], + properties: { + projectLocations: { + type: 'string', + title: 'Project Locations', + }, + geographicNames: { + type: 'string', + title: 'Geographic Names', + }, + regionalDistricts: { + type: 'string', + title: 'Regional Districts', + }, + economicRegions: { + type: 'string', + title: 'Economic Regions', + }, + communitySourceData: { + type: 'array', + default: [{}], + items: { + type: 'object', + required: ['geographicName', 'regionalDistrict', 'economicRegion'], + properties: { + geographicName: { + type: 'string', + title: 'Geographic Name', + }, + regionalDistrict: { + type: 'string', + title: 'Regional District', + }, + economicRegion: { + type: 'string', + title: 'Economic Region', + }, + }, + }, + }, + }, +}; + +export default locations; diff --git a/app/formSchema/analyst/cbc/locationsAndCounts.ts b/app/formSchema/analyst/cbc/locationsAndCounts.ts index e983ee8d33..64ba3b904a 100644 --- a/app/formSchema/analyst/cbc/locationsAndCounts.ts +++ b/app/formSchema/analyst/cbc/locationsAndCounts.ts @@ -1,7 +1,7 @@ import { RJSFSchema } from '@rjsf/utils'; const locationsAndCounts: RJSFSchema = { - title: 'Locations and counts', + title: 'Counts', description: '', type: 'object', required: [ @@ -14,18 +14,6 @@ const locationsAndCounts: RJSFSchema = { type: 'string', title: 'Project Locations', }, - geographicNames: { - type: 'string', - title: 'Geographic Names', - }, - regionalDistricts: { - type: 'string', - title: 'Regional Districts', - }, - economicRegions: { - type: 'string', - title: 'Economic Regions', - }, communitiesAndLocalesCount: { type: 'number', title: 'Communities and locales count', diff --git a/app/formSchema/analyst/cbc/review.ts b/app/formSchema/analyst/cbc/review.ts index 63455e48cf..cd2eb8df21 100644 --- a/app/formSchema/analyst/cbc/review.ts +++ b/app/formSchema/analyst/cbc/review.ts @@ -6,6 +6,7 @@ import funding from './funding'; import eventsAndDates from './eventsAndDates'; import miscellaneous from './miscellaneous'; import projectDataReviews from './projectDataReviews'; +import locationsUi from './locations'; const review: RJSFSchema = { type: 'object', @@ -24,6 +25,12 @@ const review: RJSFSchema = { ...projectType.properties, }, }, + locations: { + title: locationsUi.title, + properties: { + ...locationsUi.properties, + }, + }, locationsAndCounts: { required: locationsAndCounts.required, title: locationsAndCounts.title, diff --git a/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts b/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts new file mode 100644 index 0000000000..df474a1226 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts @@ -0,0 +1,22 @@ +const locationsUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + + communitySourceData: { + items: { + communitySources: { + 'ui:widget': 'CommunitySourceObjectWidget', + 'ui:label': 'Community Sources', + }, + }, + }, + + projectLocations: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Locations', + }, +}; + +export default locationsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/editUiSchema.ts b/app/formSchema/uiSchema/cbc/editUiSchema.ts index daa80ad1d8..2412aa89cd 100644 --- a/app/formSchema/uiSchema/cbc/editUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/editUiSchema.ts @@ -6,6 +6,7 @@ import fundingUiSchema from './fundingUiSchema'; import eventsAndDatesUiSchema from './eventsAndDatesUiSchema'; import miscellaneousUiSchema from './miscellaneousUiSchema'; import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; +import locationsUiSchema from './locationsUiSchema'; const editUiSchema = { 'ui:title': 'CBC Edit', @@ -21,6 +22,10 @@ const editUiSchema = { 'ui:title': 'Locations and Counts', ...locationsAndCountsUiSchema, }, + locations: { + 'ui:title': 'Locations', + ...locationsUiSchema, + }, funding: { 'ui:title': 'Funding', ...fundingUiSchema, diff --git a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts index 67830a66a2..c52be7567d 100644 --- a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts @@ -11,18 +11,6 @@ const locationsAndCountsUiSchema = { maxLength: 1000, }, }, - geographicNames: { - 'ui:widget': 'ReadOnlyWidget', - 'ui:label': 'Geographic Names', - }, - regionalDistricts: { - 'ui:widget': 'ReadOnlyWidget', - 'ui:label': 'Regional Districts', - }, - economicRegions: { - 'ui:widget': 'ReadOnlyWidget', - 'ui:label': 'Economic Regions', - }, communitiesAndLocalesCount: { 'ui:widget': 'NumberWidget', 'ui:label': 'Communities and Locales Count', diff --git a/app/formSchema/uiSchema/cbc/locationsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsUiSchema.ts new file mode 100644 index 0000000000..378d237d18 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/locationsUiSchema.ts @@ -0,0 +1,24 @@ +const locationsUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + projectLocations: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Locations', + }, + geographicNames: { + type: 'string', + title: 'Geographic Names', + }, + regionalDistricts: { + type: 'string', + title: 'Regional Districts', + }, + economicRegions: { + type: 'string', + title: 'Economic Regions', + }, +}; + +export default locationsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/reviewUiSchema.ts b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts index 98dda150ea..ba0bb41f5f 100644 --- a/app/formSchema/uiSchema/cbc/reviewUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts @@ -2,10 +2,10 @@ 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'; +import locationsUiSchema from './locationsUiSchema'; const reviewUiSchema = { tombstone: { @@ -31,6 +31,10 @@ const reviewUiSchema = { ...projectTypeUiSchema, 'ui:options': { allowAnalystEdit: true }, }, + locations: { + ...locationsUiSchema, + 'ui:options': { allowAnalystEdit: true }, + }, locationsAndCounts: { ...locationsAndCountsUiSchema, 'ui:options': { allowAnalystEdit: true }, diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx new file mode 100644 index 0000000000..e12ab369ba --- /dev/null +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -0,0 +1,41 @@ +import { ArrayFieldTemplateProps } from '@rjsf/utils'; +import React from 'react'; + +const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { + const { items, onAddClick, canAdd } = props; + + return ( + <> + {items.map((element, index) => ( +
+ {index === 0 ? ( +
+
+ {element.children} + {canAdd && ( + + )} +
+ +
+
+ ) : ( +
+ {element.children} + +
+ )} +
+ ))} + + ); +}; + +export default ArrayLocationFieldTemplate; diff --git a/app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx new file mode 100644 index 0000000000..5d7cc406c3 --- /dev/null +++ b/app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx @@ -0,0 +1,62 @@ +import { WidgetProps } from '@rjsf/utils'; +import SelectWidget from '../SelectWidget'; + +interface CommunitySourceObjectWidgetProps extends WidgetProps { + children: React.ReactNode; +} + +const CommunitySourceObjectWidget: React.FC< + CommunitySourceObjectWidgetProps +> = (props) => { + const { schema, value, formContext, onChange } = props; + + const { economicRegion, regionalDistrict, geographicName, comSourceId } = + value ?? {}; + + const economicRegionOptions = formContext.economicRegions; + const regionalDistrictOptions = formContext.regionalDistricts; + const geographicNameOptions = formContext.geographicNames; + + const deleteComSource = formContext?.deleteComSource as Function; + + return ( + <> + { + if (onChange && typeof onChange === 'function') { + onChange(val); + } + }} + value={economicRegion} + schema={{ ...schema, enum: economicRegionOptions }} + /> + + + + + + + + ); +}; + +export default CommunitySourceObjectWidget; diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 3375a1521d..c31b9b50f2 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -47,10 +47,19 @@ const getCbcQuery = graphql` geographicType regionalDistrict bcGeographicName + rowId } } } } + allCommunitiesSourceData { + nodes { + rowId + bcGeographicName + economicRegion + regionalDistrict + } + } session { authRole sub @@ -102,6 +111,43 @@ const Cbc = ({ const [allowEdit, setAllowEdit] = useState( isCbcAdmin && editFeatureEnabled && !recordLocked ); + + const allCommunitiesSourceData = query.allCommunitiesSourceData.nodes; + + const geographicNamesByRegionalDistrict = useMemo(() => { + const regionalDistrictGeographicNamesDict = {}; + allCommunitiesSourceData.forEach((community) => { + const { regionalDistrict, bcGeographicName } = community; + if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { + regionalDistrictGeographicNamesDict[regionalDistrict] = []; + } + regionalDistrictGeographicNamesDict[regionalDistrict].push( + bcGeographicName + ); + }); + return regionalDistrictGeographicNamesDict; + }, [allCommunitiesSourceData]); + + const regionalDistrictsByEconomicRegion = useMemo(() => { + const economicRegionRegionalDistrictsDict = {}; + allCommunitiesSourceData.forEach((community) => { + const { economicRegion, regionalDistrict } = community; + if (!economicRegionRegionalDistrictsDict[economicRegion]) { + economicRegionRegionalDistrictsDict[economicRegion] = []; + } + economicRegionRegionalDistrictsDict[economicRegion].push( + regionalDistrict + ); + }); + return economicRegionRegionalDistrictsDict; + }, [allCommunitiesSourceData]); + + const allEconomicRegions = useMemo(() => { + return allCommunitiesSourceData.map( + (community) => community.economicRegion + ); + }, [allCommunitiesSourceData]); + useEffect(() => { const { cbcByRowId } = query; const { cbcDataByCbcId, cbcProjectCommunitiesByCbcId } = cbcByRowId; @@ -115,6 +161,7 @@ const Cbc = ({ const { tombstone, projectType, + locations, locationsAndCounts, funding, eventsAndDates, @@ -128,6 +175,7 @@ const Cbc = ({ setFormData({ tombstone, projectType, + locations, locationsAndCounts, funding, eventsAndDates, @@ -312,6 +360,9 @@ const Cbc = ({ errors: formErrors, showErrorHint: true, recordLocked, + geographicNamesByRegionalDistrict, + regionalDistrictsByEconomicRegion, + economicRegions: allEconomicRegions, }} formData={formData} handleChange={(e) => { diff --git a/app/utils/schemaUtils.ts b/app/utils/schemaUtils.ts index f4a5c8abc9..f76eb361b0 100644 --- a/app/utils/schemaUtils.ts +++ b/app/utils/schemaUtils.ts @@ -39,6 +39,7 @@ export const createCbcSchemaData = (jsonData) => { return { tombstone: null, projectType: null, + locations: null, locationsAndCounts: null, funding: null, eventsAndDates: null, @@ -73,6 +74,17 @@ export const createCbcSchemaData = (jsonData) => { }; const locationsAndCounts = { projectLocations: jsonData.projectLocations, + communitiesAndLocalesCount: jsonData.communitiesAndLocalesCount, + indigenousCommunities: jsonData.indigenousCommunities, + householdCount: jsonData.householdCount, + transportKm: jsonData.transportKm, + highwayKm: jsonData.highwayKm, + restAreas: jsonData.restAreas, + }; + + const locations = { + projectLocations: jsonData.projectLocations, + communitySourceData: jsonData.communitySourceData, geographicNames: getDistinctValues( jsonData.cbcCommunitiesData, 'bcGeographicName' @@ -85,12 +97,6 @@ export const createCbcSchemaData = (jsonData) => { jsonData.cbcCommunitiesData, 'economicRegion' ), - communitiesAndLocalesCount: jsonData.communitiesAndLocalesCount, - indigenousCommunities: jsonData.indigenousCommunities, - householdCount: jsonData.householdCount, - transportKm: jsonData.transportKm, - highwayKm: jsonData.highwayKm, - restAreas: jsonData.restAreas, }; const funding = { @@ -132,6 +138,7 @@ export const createCbcSchemaData = (jsonData) => { const dataBySection = { tombstone, projectType, + locations, locationsAndCounts, funding, eventsAndDates, From b8e811e456700752e0d18c9ca18ea835915c790c Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 20 Aug 2024 10:54:45 -0400 Subject: [PATCH 02/32] feat: community source data is now displayed properly --- app/components/Analyst/CBC/CbcTheme.ts | 6 +- .../Analyst/Project/ProjectTheme.ts | 2 + .../Review/fields/ReviewFieldTemplate.tsx | 6 ++ app/formSchema/analyst/cbc/locations.ts | 20 +---- .../analyst/cbc/locationsAndCounts.ts | 4 - .../uiSchema/cbc/editLocationsUiSchema.ts | 30 +++++-- app/formSchema/uiSchema/cbc/editUiSchema.ts | 4 +- .../cbc/locationsAndCountsUiSchema.ts | 7 -- .../uiSchema/cbc/locationsUiSchema.ts | 15 ++-- app/lib/theme/widgets/SelectWidget.tsx | 25 ++++-- .../custom/CommunitySourceObjectWidget.tsx | 62 -------------- .../widgets/custom/CommunitySourceWidget.tsx | 83 +++++++++++++++++++ app/pages/analyst/cbc/[cbcId].tsx | 30 +++++-- .../analyst/cbc/[cbcId]/edit/[section].tsx | 65 ++++++++++++++- app/utils/schemaUtils.ts | 3 +- 15 files changed, 234 insertions(+), 128 deletions(-) delete mode 100644 app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx create mode 100644 app/lib/theme/widgets/custom/CommunitySourceWidget.tsx diff --git a/app/components/Analyst/CBC/CbcTheme.ts b/app/components/Analyst/CBC/CbcTheme.ts index 292b899c8e..59c8ebc5db 100644 --- a/app/components/Analyst/CBC/CbcTheme.ts +++ b/app/components/Analyst/CBC/CbcTheme.ts @@ -11,12 +11,13 @@ import { TextWidget, DatePickerWidget, } from 'lib/theme/widgets'; +import ArrayLocationFieldTemplate from 'lib/theme/fields/ArrayLocationDataField'; +import CommunitySourceWidget from 'lib/theme/widgets/custom/CommunitySourceWidget'; import ArrayBooleanField from '../../Review/fields/ArrayBooleanField'; import ReviewCheckboxField from '../../Review/fields/ReviewCheckboxField'; import ReviewInlineArrayField from '../../Review/fields/ReviewInlineArrayField'; import ReviewObjectFieldTemplate from '../../Review/ReviewObjectFieldTemplate'; import ReviewSectionField from '../../Review/ReviewSectionField'; -import ReviewArrayFieldTemplate from '../../Review/fields/ReviewArrayFieldTemplate'; import ReviewFieldTemplate from '../../Review/fields/ReviewFieldTemplate'; import DefaultWidget from '../../Review/widgets/DefaultWidget'; import BooleanWidget from '../../Review/widgets/BooleanWidget'; @@ -47,12 +48,13 @@ const CbcTheme: ThemeProps = { NumberWidget, NumericStringWidget, ReadOnlyWidget: DefaultWidget, + CommunitySourceWidget, }, templates: { ...templates, ObjectFieldTemplate: ReviewObjectFieldTemplate, FieldTemplate: ReviewFieldTemplate, - ArrayFieldTemplate: ReviewArrayFieldTemplate, + ArrayFieldTemplate: ArrayLocationFieldTemplate, }, }; diff --git a/app/components/Analyst/Project/ProjectTheme.ts b/app/components/Analyst/Project/ProjectTheme.ts index c7ef5c836c..17a0184867 100644 --- a/app/components/Analyst/Project/ProjectTheme.ts +++ b/app/components/Analyst/Project/ProjectTheme.ts @@ -3,6 +3,7 @@ import ArrayFieldTemplate from 'lib/theme/fields/ArrayFieldTemplate'; import * as widgets from 'lib/theme/widgets'; import ReadOnlyWidget from 'components/Analyst/Project/ConditionalApproval/widgets/ReadOnlyWidget'; import ExcelImportFileWidget from 'components/Analyst/Project/ProjectInformation/widgets/ExcelImportFileWidget'; +import CommunitySourceWidget from 'lib/theme/widgets/custom/CommunitySourceWidget'; import { StatusSelectWidget } from './ConditionalApproval/widgets'; import ProjectFieldTemplate from './fields/ProjectFieldTemplate'; import ProjectObjectFieldTemplate from './fields/ProjectObjectFieldTemplate'; @@ -30,6 +31,7 @@ const ProjectTheme: ThemeProps = { CcbcIdWidget, HiddenWidget, ContextErrorWidget, + CommunitySourceWidget, }, templates: { ...templates, diff --git a/app/components/Review/fields/ReviewFieldTemplate.tsx b/app/components/Review/fields/ReviewFieldTemplate.tsx index 2d33b69007..f1511d862d 100644 --- a/app/components/Review/fields/ReviewFieldTemplate.tsx +++ b/app/components/Review/fields/ReviewFieldTemplate.tsx @@ -37,6 +37,12 @@ const ReviewFieldTemplate: React.FC = ({ const title = (uiSchema?.['ui:options']?.customTitle as JSX.Element) ?? schema.title; + const isExcludeTableFormat = uiSchema?.['ui:options']?.excludeTableFormat; + + if (isExcludeTableFormat) { + return <>{children}; + } + const before = uiSchema?.['ui:before']; const after = uiSchema?.['ui:after']; const fieldName = id?.split('_')?.[2]; diff --git a/app/formSchema/analyst/cbc/locations.ts b/app/formSchema/analyst/cbc/locations.ts index c6cd0e2bc6..564b627618 100644 --- a/app/formSchema/analyst/cbc/locations.ts +++ b/app/formSchema/analyst/cbc/locations.ts @@ -24,24 +24,10 @@ const locations: RJSFSchema = { }, communitySourceData: { type: 'array', - default: [{}], + default: [], items: { - type: 'object', - required: ['geographicName', 'regionalDistrict', 'economicRegion'], - properties: { - geographicName: { - type: 'string', - title: 'Geographic Name', - }, - regionalDistrict: { - type: 'string', - title: 'Regional District', - }, - economicRegion: { - type: 'string', - title: 'Economic Region', - }, - }, + type: 'integer', + enum: [], }, }, }, diff --git a/app/formSchema/analyst/cbc/locationsAndCounts.ts b/app/formSchema/analyst/cbc/locationsAndCounts.ts index 64ba3b904a..48a8029a43 100644 --- a/app/formSchema/analyst/cbc/locationsAndCounts.ts +++ b/app/formSchema/analyst/cbc/locationsAndCounts.ts @@ -10,10 +10,6 @@ const locationsAndCounts: RJSFSchema = { 'householdCount', ], properties: { - projectLocations: { - type: 'string', - title: 'Project Locations', - }, communitiesAndLocalesCount: { type: 'number', title: 'Communities and locales count', diff --git a/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts b/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts index df474a1226..e4745ceed9 100644 --- a/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts @@ -3,19 +3,31 @@ const locationsUiSchema = { 'ui:options': { dividers: true, }, - + projectLocations: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Locations', + }, + geographicNames: { + 'ui:widget': 'hidden', + }, + regionalDistricts: { + 'ui:widget': 'hidden', + }, + economicRegions: { + 'ui:widget': 'hidden', + }, communitySourceData: { + 'ui:field': 'ArrayLocationDataField', items: { - communitySources: { - 'ui:widget': 'CommunitySourceObjectWidget', - 'ui:label': 'Community Sources', + 'ui:widget': 'CommunitySourceWidget', + 'ui:label': 'Community Sources', + 'ui:options': { + excludeTableFormat: true, }, }, - }, - - projectLocations: { - 'ui:widget': 'TextAreaWidget', - 'ui:label': 'Project Locations', + 'ui:options': { + excludeTableFormat: true, + }, }, }; diff --git a/app/formSchema/uiSchema/cbc/editUiSchema.ts b/app/formSchema/uiSchema/cbc/editUiSchema.ts index 2412aa89cd..9cfb88acd6 100644 --- a/app/formSchema/uiSchema/cbc/editUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/editUiSchema.ts @@ -6,7 +6,7 @@ import fundingUiSchema from './fundingUiSchema'; import eventsAndDatesUiSchema from './eventsAndDatesUiSchema'; import miscellaneousUiSchema from './miscellaneousUiSchema'; import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; -import locationsUiSchema from './locationsUiSchema'; +import editLocationsUiSchema from './editLocationsUiSchema'; const editUiSchema = { 'ui:title': 'CBC Edit', @@ -24,7 +24,7 @@ const editUiSchema = { }, locations: { 'ui:title': 'Locations', - ...locationsUiSchema, + ...editLocationsUiSchema, }, funding: { 'ui:title': 'Funding', diff --git a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts index c52be7567d..ef9dc963f3 100644 --- a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts @@ -4,13 +4,6 @@ const locationsAndCountsUiSchema = { dividers: true, }, 'ui:title': 'Locations and Counts', - projectLocations: { - 'ui:widget': 'TextAreaWidget', - 'ui:label': 'Project Locations', - 'ui:options': { - maxLength: 1000, - }, - }, communitiesAndLocalesCount: { 'ui:widget': 'NumberWidget', 'ui:label': 'Communities and Locales Count', diff --git a/app/formSchema/uiSchema/cbc/locationsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsUiSchema.ts index 378d237d18..ae2b76b2b2 100644 --- a/app/formSchema/uiSchema/cbc/locationsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/locationsUiSchema.ts @@ -8,16 +8,19 @@ const locationsUiSchema = { 'ui:label': 'Project Locations', }, geographicNames: { - type: 'string', - title: 'Geographic Names', + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Geographic Names', }, regionalDistricts: { - type: 'string', - title: 'Regional Districts', + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Regional Districts', }, economicRegions: { - type: 'string', - title: 'Economic Regions', + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Economic Regions', + }, + communitySourceData: { + 'ui:hidden': true, }, }; diff --git a/app/lib/theme/widgets/SelectWidget.tsx b/app/lib/theme/widgets/SelectWidget.tsx index 76bbc075a3..687782d904 100644 --- a/app/lib/theme/widgets/SelectWidget.tsx +++ b/app/lib/theme/widgets/SelectWidget.tsx @@ -3,8 +3,14 @@ import { Dropdown } from '@button-inc/bcgov-theme'; import styled from 'styled-components'; import Label from 'components/Form/Label'; +interface ObjectOptionProps { + value: string | number; + label: string; +} + interface SelectWidgetProps extends WidgetProps { customOption?: React.ReactNode; + objectOptions?: ObjectOptionProps[]; } interface SelectProps { @@ -64,10 +70,11 @@ const SelectWidget: React.FC = ({ uiSchema, customOption, rawErrors, + objectOptions, }) => { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore - const options = schema.enum as Array; + const options = objectOptions ?? (schema.enum as Array); const description = uiSchema ? uiSchema['ui:description'] : null; const isError = rawErrors && rawErrors.length > 0 && !value; @@ -91,11 +98,17 @@ const SelectWidget: React.FC = ({ - {options?.map((opt) => ( - - ))} + {options?.map((opt, index) => { + return ( + + ); + })} {customOption ?? customOption} {description && } diff --git a/app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx deleted file mode 100644 index 5d7cc406c3..0000000000 --- a/app/lib/theme/widgets/custom/CommunitySourceObjectWidget.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import { WidgetProps } from '@rjsf/utils'; -import SelectWidget from '../SelectWidget'; - -interface CommunitySourceObjectWidgetProps extends WidgetProps { - children: React.ReactNode; -} - -const CommunitySourceObjectWidget: React.FC< - CommunitySourceObjectWidgetProps -> = (props) => { - const { schema, value, formContext, onChange } = props; - - const { economicRegion, regionalDistrict, geographicName, comSourceId } = - value ?? {}; - - const economicRegionOptions = formContext.economicRegions; - const regionalDistrictOptions = formContext.regionalDistricts; - const geographicNameOptions = formContext.geographicNames; - - const deleteComSource = formContext?.deleteComSource as Function; - - return ( - <> - { - if (onChange && typeof onChange === 'function') { - onChange(val); - } - }} - value={economicRegion} - schema={{ ...schema, enum: economicRegionOptions }} - /> - - - - - - - - ); -}; - -export default CommunitySourceObjectWidget; diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx new file mode 100644 index 0000000000..1acadaef0d --- /dev/null +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -0,0 +1,83 @@ +import { WidgetProps } from '@rjsf/utils'; +import { useState } from 'react'; +import styled from 'styled-components'; +import SelectWidget from '../SelectWidget'; + +interface CommunitySourceWidgetProps extends WidgetProps { + children: React.ReactNode; +} + +const StyledDiv = styled.div` + display: flex; + flex-direction: row; +`; + +const CommunitySourceWidget: React.FC = (props) => { + const { schema, value, formContext } = props; + + const { economicRegion, regionalDistrict, rowId: comSourceId } = value ?? {}; + const [selectedEconomicRegion, setSelectedEconomicRegion] = useState< + string | null + >(economicRegion); + const [selectedRegionalDistrict, setSelectedRegionalDistrict] = useState< + string | null + >(regionalDistrict); + const [selectedGeographicName] = useState(comSourceId); + + const economicRegionOptions = formContext.economicRegions; + const regionalDistrictOptions = formContext.regionalDistrictsByEconomicRegion; + const geographicNameOptions = formContext.geographicNamesByRegionalDistrict; + + const deleteComSource = formContext?.deleteComSource as Function; + + return ( + + { + setSelectedEconomicRegion(val); + }} + value={economicRegion} + placeholder="Select Economic Region" + schema={{ ...schema, enum: economicRegionOptions }} + /> + + { + setSelectedRegionalDistrict(val); + }} + schema={{ + ...schema, + enum: regionalDistrictOptions[selectedEconomicRegion] ?? [], + }} + /> + + + + + + ); +}; + +export default CommunitySourceWidget; diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index c31b9b50f2..8f1838bea9 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -117,13 +117,18 @@ const Cbc = ({ const geographicNamesByRegionalDistrict = useMemo(() => { const regionalDistrictGeographicNamesDict = {}; allCommunitiesSourceData.forEach((community) => { - const { regionalDistrict, bcGeographicName } = community; + const { + regionalDistrict, + bcGeographicName, + rowId: communityRowId, + } = community; if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { regionalDistrictGeographicNamesDict[regionalDistrict] = []; } - regionalDistrictGeographicNamesDict[regionalDistrict].push( - bcGeographicName - ); + regionalDistrictGeographicNamesDict[regionalDistrict].push({ + label: bcGeographicName, + value: communityRowId, + }); }); return regionalDistrictGeographicNamesDict; }, [allCommunitiesSourceData]); @@ -148,13 +153,17 @@ const Cbc = ({ ); }, [allCommunitiesSourceData]); + const cbcCommunitiesData = useMemo(() => { + return query.cbcByRowId.cbcProjectCommunitiesByCbcId.nodes?.map( + (node) => node.communitiesSourceDataByCommunitiesSourceDataId + ); + }, [query]); + useEffect(() => { const { cbcByRowId } = query; - const { cbcDataByCbcId, cbcProjectCommunitiesByCbcId } = cbcByRowId; + const { cbcDataByCbcId } = cbcByRowId; + const { edges } = cbcDataByCbcId; - const cbcCommunitiesData = cbcProjectCommunitiesByCbcId.nodes?.map( - (node) => node.communitiesSourceDataByCommunitiesSourceDataId - ); const cbcData = edges[0].node; const { jsonData } = cbcData; @@ -185,6 +194,7 @@ const Cbc = ({ setBaseFormData({ tombstone, projectType, + locations, locationsAndCounts, funding, eventsAndDates, @@ -195,7 +205,7 @@ const Cbc = ({ setAllowEdit( isCbcAdmin && editFeatureEnabled && !projectDataReviews?.locked ); - }, [query, isCbcAdmin, editFeatureEnabled]); + }, [query, isCbcAdmin, editFeatureEnabled, cbcCommunitiesData]); const [updateFormData] = useUpdateCbcDataAndInsertChangeRequest(); @@ -363,6 +373,8 @@ const Cbc = ({ geographicNamesByRegionalDistrict, regionalDistrictsByEconomicRegion, economicRegions: allEconomicRegions, + cbcCommunitiesData: + query.cbcByRowId.cbcProjectCommunitiesByCbcId.nodes, }} formData={formData} handleChange={(e) => { diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 5e57cb8247..5d5bb32707 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -17,6 +17,7 @@ import useModal from 'lib/helpers/useModal'; import { ChangeModal } from 'components/Analyst'; import { useUpdateCbcDataAndInsertChangeRequest } from 'schema/mutations/cbc/updateCbcDataAndInsertChangeReason'; import { createCbcSchemaData } from 'utils/schemaUtils'; +import ArrayLocationFieldTemplate from 'lib/theme/fields/ArrayLocationDataField'; import customValidate, { CBC_WARN_COLOR } from 'utils/cbcCustomValidator'; const getCbcSectionQuery = graphql` @@ -45,10 +46,19 @@ const getCbcSectionQuery = graphql` geographicType regionalDistrict bcGeographicName + rowId } } } } + allCommunitiesSourceData { + nodes { + rowId + bcGeographicName + economicRegion + regionalDistrict + } + } session { sub } @@ -86,6 +96,50 @@ const EditCbcSection = ({ setFormData({ ...dataBySection, [section]: e.formData }); }; + const allCommunitiesSourceData = query.allCommunitiesSourceData.nodes; + + const geographicNamesByRegionalDistrict = useMemo(() => { + const regionalDistrictGeographicNamesDict = {}; + allCommunitiesSourceData.forEach((community) => { + const { + regionalDistrict, + bcGeographicName, + rowId: communityRowId, + } = community; + if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { + regionalDistrictGeographicNamesDict[regionalDistrict] = []; + } + regionalDistrictGeographicNamesDict[regionalDistrict].push({ + label: bcGeographicName, + value: communityRowId, + }); + }); + return regionalDistrictGeographicNamesDict; + }, [allCommunitiesSourceData]); + + const regionalDistrictsByEconomicRegion = useMemo(() => { + const economicRegionRegionalDistrictsDict = {}; + allCommunitiesSourceData.forEach((community) => { + const { economicRegion, regionalDistrict } = community; + if (!economicRegionRegionalDistrictsDict[economicRegion]) { + economicRegionRegionalDistrictsDict[economicRegion] = []; + } + economicRegionRegionalDistrictsDict[economicRegion].push( + regionalDistrict + ); + }); + return economicRegionRegionalDistrictsDict; + }, [allCommunitiesSourceData]); + + const allEconomicRegions = useMemo(() => { + return allCommunitiesSourceData.map( + (community) => community.economicRegion + ); + }, [allCommunitiesSourceData]); + + const theme = { ...ProjectTheme }; + theme.templates.ArrayFieldTemplate = ArrayLocationFieldTemplate; + const handleSubmit = () => { const { geographicNames, @@ -155,13 +209,20 @@ const EditCbcSection = ({ { setFormData({ ...dataBySection, [section]: e.formData }); }} diff --git a/app/utils/schemaUtils.ts b/app/utils/schemaUtils.ts index f76eb361b0..03092d78fc 100644 --- a/app/utils/schemaUtils.ts +++ b/app/utils/schemaUtils.ts @@ -73,7 +73,6 @@ export const createCbcSchemaData = (jsonData) => { connectedCoastNetworkDependant: jsonData.connectedCoastNetworkDependant, }; const locationsAndCounts = { - projectLocations: jsonData.projectLocations, communitiesAndLocalesCount: jsonData.communitiesAndLocalesCount, indigenousCommunities: jsonData.indigenousCommunities, householdCount: jsonData.householdCount, @@ -84,7 +83,7 @@ export const createCbcSchemaData = (jsonData) => { const locations = { projectLocations: jsonData.projectLocations, - communitySourceData: jsonData.communitySourceData, + communitySourceData: [{}, ...jsonData.cbcCommunitiesData], geographicNames: getDistinctValues( jsonData.cbcCommunitiesData, 'bcGeographicName' From 274b68cc81d7e64c51472fb42db64cf248c9b988 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Wed, 21 Aug 2024 11:33:05 -0400 Subject: [PATCH 03/32] chore: wip --- .../uiSchema/cbc/editLocationsUiSchema.ts | 9 +- .../theme/fields/ArrayLocationDataField.tsx | 22 +++- .../widgets/custom/CommunitySourceWidget.tsx | 106 +++++++++++------- app/pages/analyst/cbc/[cbcId].tsx | 32 ++++-- .../analyst/cbc/[cbcId]/edit/[section].tsx | 27 ++--- .../edit_cbc_project_communities.sql | 27 +++++ .../edit_cbc_project_communities.sql | 7 ++ db/sqitch.plan | 1 + 8 files changed, 165 insertions(+), 66 deletions(-) create mode 100644 db/deploy/mutations/edit_cbc_project_communities.sql create mode 100644 db/revert/mutations/edit_cbc_project_communities.sql diff --git a/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts b/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts index e4745ceed9..a481c30f9f 100644 --- a/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/editLocationsUiSchema.ts @@ -8,13 +8,16 @@ const locationsUiSchema = { 'ui:label': 'Project Locations', }, geographicNames: { - 'ui:widget': 'hidden', + 'ui:hidden': true, + 'ui:widget': 'HiddenWidget', }, regionalDistricts: { - 'ui:widget': 'hidden', + 'ui:hidden': true, + 'ui:widget': 'HiddenWidget', }, economicRegions: { - 'ui:widget': 'hidden', + 'ui:hidden': true, + 'ui:widget': 'HiddenWidget', }, communitySourceData: { 'ui:field': 'ArrayLocationDataField', diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx index e12ab369ba..a510ebe0fd 100644 --- a/app/lib/theme/fields/ArrayLocationDataField.tsx +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -2,7 +2,10 @@ import { ArrayFieldTemplateProps } from '@rjsf/utils'; import React from 'react'; const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { - const { items, onAddClick, canAdd } = props; + const { items, onAddClick, canAdd, formContext } = props; + + const deleteCommunitySource = formContext?.deleteCommunitySource as Function; + const addCommunitySource = formContext?.addCommunitySource as Function; return ( <> @@ -13,7 +16,12 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => {
{element.children} {canAdd && ( - )} @@ -26,7 +34,15 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { {element.children} diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index 1acadaef0d..0280bb238f 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -1,7 +1,8 @@ import { WidgetProps } from '@rjsf/utils'; import { useState } from 'react'; +import Autocomplete from '@mui/material/Autocomplete'; +import { TextField } from '@mui/material'; import styled from 'styled-components'; -import SelectWidget from '../SelectWidget'; interface CommunitySourceWidgetProps extends WidgetProps { children: React.ReactNode; @@ -10,72 +11,101 @@ interface CommunitySourceWidgetProps extends WidgetProps { const StyledDiv = styled.div` display: flex; flex-direction: row; + gap: 4px; + margin-top: 8px; `; const CommunitySourceWidget: React.FC = (props) => { - const { schema, value, formContext } = props; + const { value, formContext } = props; - const { economicRegion, regionalDistrict, rowId: comSourceId } = value ?? {}; + const { + bcGeographicName, + economicRegion, + regionalDistrict, + rowId: comSourceId, + } = value ?? {}; const [selectedEconomicRegion, setSelectedEconomicRegion] = useState< string | null >(economicRegion); const [selectedRegionalDistrict, setSelectedRegionalDistrict] = useState< string | null >(regionalDistrict); - const [selectedGeographicName] = useState(comSourceId); + const [selectedGeographicName, setSelectedGeographicName] = useState({ + value: comSourceId, + label: bcGeographicName, + }); const economicRegionOptions = formContext.economicRegions; const regionalDistrictOptions = formContext.regionalDistrictsByEconomicRegion; const geographicNameOptions = formContext.geographicNamesByRegionalDistrict; - const deleteComSource = formContext?.deleteComSource as Function; - return ( - { - setSelectedEconomicRegion(val); + { + if (e) { + setSelectedEconomicRegion(val); + } }} + style={{ width: '300px' }} value={economicRegion} - placeholder="Select Economic Region" - schema={{ ...schema, enum: economicRegionOptions }} + options={economicRegionOptions} + getOptionLabel={(option) => option} + renderInput={(params) => ( + + )} /> - { - setSelectedRegionalDistrict(val); - }} - schema={{ - ...schema, - enum: regionalDistrictOptions[selectedEconomicRegion] ?? [], + style={{ width: '300px' }} + onChange={(e, val) => { + if (e) { + setSelectedRegionalDistrict(val); + } }} + options={ + regionalDistrictOptions[selectedEconomicRegion] + ? [...regionalDistrictOptions[selectedEconomicRegion]] + : [] + } + getOptionLabel={(option) => option} + renderInput={(params) => ( + + )} /> - ( + + )} + options={ + geographicNameOptions[selectedRegionalDistrict] + ? [...geographicNameOptions[selectedRegionalDistrict]] + : [] + } + isOptionEqualToValue={(option, val) => { + return option.value === val; }} - /> - - + /> ); }; diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 8f1838bea9..77d1229cdd 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -104,6 +104,16 @@ const Cbc = ({ const { rowId } = query.cbcByRowId; const [formData, setFormData] = useState({} as any); const [baseFormData, setBaseFormData] = useState({} as any); + const [addedCommunities, setAddedCommunities] = useState([]); + const [removedCommunities, setRemovedCommunities] = useState([]); + + const addCommunity = (communityId) => { + setAddedCommunities((prevList) => [...prevList, communityId]); + }; + + const removeCommunity = (communityId) => { + setRemovedCommunities((prevList) => [...prevList, communityId]); + }; const changeModal = useModal(); @@ -123,9 +133,9 @@ const Cbc = ({ rowId: communityRowId, } = community; if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { - regionalDistrictGeographicNamesDict[regionalDistrict] = []; + regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); } - regionalDistrictGeographicNamesDict[regionalDistrict].push({ + regionalDistrictGeographicNamesDict[regionalDistrict].add({ label: bcGeographicName, value: communityRowId, }); @@ -138,19 +148,21 @@ const Cbc = ({ allCommunitiesSourceData.forEach((community) => { const { economicRegion, regionalDistrict } = community; if (!economicRegionRegionalDistrictsDict[economicRegion]) { - economicRegionRegionalDistrictsDict[economicRegion] = []; + economicRegionRegionalDistrictsDict[economicRegion] = new Set(); } - economicRegionRegionalDistrictsDict[economicRegion].push( - regionalDistrict - ); + economicRegionRegionalDistrictsDict[economicRegion].add(regionalDistrict); }); + return economicRegionRegionalDistrictsDict; }, [allCommunitiesSourceData]); const allEconomicRegions = useMemo(() => { - return allCommunitiesSourceData.map( - (community) => community.economicRegion - ); + const economicRegionsSet = new Set(); + allCommunitiesSourceData.forEach((community) => { + const { economicRegion } = community; + economicRegionsSet.add(economicRegion); + }); + return [...economicRegionsSet]; }, [allCommunitiesSourceData]); const cbcCommunitiesData = useMemo(() => { @@ -375,6 +387,8 @@ const Cbc = ({ economicRegions: allEconomicRegions, cbcCommunitiesData: query.cbcByRowId.cbcProjectCommunitiesByCbcId.nodes, + addCommunitySource: addCommunity, + deleteCommunitySource: removeCommunity, }} formData={formData} handleChange={(e) => { diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 5d5bb32707..a4d18bb896 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -107,9 +107,9 @@ const EditCbcSection = ({ rowId: communityRowId, } = community; if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { - regionalDistrictGeographicNamesDict[regionalDistrict] = []; + regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); } - regionalDistrictGeographicNamesDict[regionalDistrict].push({ + regionalDistrictGeographicNamesDict[regionalDistrict].add({ label: bcGeographicName, value: communityRowId, }); @@ -118,23 +118,24 @@ const EditCbcSection = ({ }, [allCommunitiesSourceData]); const regionalDistrictsByEconomicRegion = useMemo(() => { - const economicRegionRegionalDistrictsDict = {}; + const districtByEconomicRegionDict = {}; allCommunitiesSourceData.forEach((community) => { const { economicRegion, regionalDistrict } = community; - if (!economicRegionRegionalDistrictsDict[economicRegion]) { - economicRegionRegionalDistrictsDict[economicRegion] = []; + if (!districtByEconomicRegionDict[economicRegion]) { + districtByEconomicRegionDict[economicRegion] = new Set(); } - economicRegionRegionalDistrictsDict[economicRegion].push( - regionalDistrict - ); + districtByEconomicRegionDict[economicRegion].add(regionalDistrict); }); - return economicRegionRegionalDistrictsDict; + return districtByEconomicRegionDict; }, [allCommunitiesSourceData]); const allEconomicRegions = useMemo(() => { - return allCommunitiesSourceData.map( - (community) => community.economicRegion - ); + const economicRegionsSet = new Set(); + allCommunitiesSourceData.forEach((community) => { + const { economicRegion } = community; + economicRegionsSet.add(economicRegion); + }); + return [...economicRegionsSet]; }, [allCommunitiesSourceData]); const theme = { ...ProjectTheme }; @@ -216,7 +217,7 @@ const EditCbcSection = ({ noHtml5Validate omitExtraData={false} formContext={{ - allEconomicRegions, + economicRegions: allEconomicRegions, regionalDistrictsByEconomicRegion, geographicNamesByRegionalDistrict, allCommunitiesSourceData, diff --git a/db/deploy/mutations/edit_cbc_project_communities.sql b/db/deploy/mutations/edit_cbc_project_communities.sql new file mode 100644 index 0000000000..24f151aeed --- /dev/null +++ b/db/deploy/mutations/edit_cbc_project_communities.sql @@ -0,0 +1,27 @@ +-- Deploy ccbc:mutations/edit_cbc_project_communities to pg +begin; + +create or replace function ccbc_public.edit_cbc_project_communities(_project_id int, _community_ids_to_add int[], _community_ids_to_archive int[]) returns setof ccbc_public.cbc_project_communities as +$$ +declare + _community_id int; +begin + -- Insert new community ids into ccbc_public.cbc_project_communities table + foreach _community_id in array _community_ids_to_add + loop + insert into ccbc_public.cbc_project_communities (project_id, community_id) + values (_project_id, _community_id); + end loop; + + -- Archive community ids that belong to _project_id + update ccbc_public.cbc_project_communities + set archived = true + where project_id = _project_id + and community_id = any(_community_ids_to_archive); + + return query select * from ccbc_public.cbc_project_communities where project_id = _project_id; + +end; +$$ language plpgsql volatile; + +commit; diff --git a/db/revert/mutations/edit_cbc_project_communities.sql b/db/revert/mutations/edit_cbc_project_communities.sql new file mode 100644 index 0000000000..4756dc35a6 --- /dev/null +++ b/db/revert/mutations/edit_cbc_project_communities.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:mutations/edit_cbc_project_communities from pg + +BEGIN; + +drop function ccbc_public.edit_cbc_project_communities(int, int[], int[]); + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index b09a973878..013bffe392 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -646,3 +646,4 @@ tables/cbc_add_fk_update_constraint 2024-07-11T20:32:11Z Rafael Solorzano <61289 @1.184.1 2024-08-26T19:57:58Z CCBC Service Account # release v1.184.1 @1.184.2 2024-08-26T20:34:36Z CCBC Service Account # release v1.184.2 @1.185.0 2024-08-26T22:26:30Z CCBC Service Account # release v1.185.0 +mutations/edit_cbc_project_communities 2024-08-21T15:16:56Z Anthony Bushara # Add and delete project communities to a cbc project From abdd6cb64c9667f7d27d146ad2fdf87eaf9b0f7e Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Wed, 21 Aug 2024 12:26:09 -0400 Subject: [PATCH 04/32] chore: prevent build errors --- app/pages/analyst/cbc/[cbcId].tsx | 4 +- app/schema/schema.graphql | 50119 ++++++++++++++-------------- 2 files changed, 25078 insertions(+), 25045 deletions(-) diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 77d1229cdd..99f989067a 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -104,8 +104,8 @@ const Cbc = ({ const { rowId } = query.cbcByRowId; const [formData, setFormData] = useState({} as any); const [baseFormData, setBaseFormData] = useState({} as any); - const [addedCommunities, setAddedCommunities] = useState([]); - const [removedCommunities, setRemovedCommunities] = useState([]); + const [, setAddedCommunities] = useState([]); + const [, setRemovedCommunities] = useState([]); const addCommunity = (communityId) => { setAddedCommunities((prevList) => [...prevList, communityId]); diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index d3b32e6200..0893618bbe 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -2756,8 +2756,8 @@ type CcbcUser implements Node { """Reads a single `CcbcUser` that is related to this `CcbcUser`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2776,22 +2776,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2810,22 +2810,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2844,22 +2844,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2878,22 +2878,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2912,22 +2912,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2946,22 +2946,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2980,22 +2980,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3014,22 +3014,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3048,22 +3048,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3082,22 +3084,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3116,22 +3120,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3150,22 +3156,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3184,22 +3190,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3218,22 +3224,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3252,22 +3258,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3286,22 +3294,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3320,22 +3330,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3354,22 +3366,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3388,22 +3400,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3422,22 +3434,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3456,24 +3468,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByCreatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3492,24 +3504,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByUpdatedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3528,24 +3540,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByArchivedBy( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3564,19 +3576,19 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """Reads and enables pagination through a set of `RfiData`.""" rfiDataByCreatedBy( @@ -3680,8 +3692,8 @@ type CcbcUser implements Node { filter: RfiDataFilter ): RfiDataConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3700,22 +3712,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3734,22 +3746,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3768,22 +3780,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3802,22 +3814,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3836,22 +3848,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3870,22 +3882,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `RecordVersion`.""" - recordVersionsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3904,24 +3916,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RecordVersion`.""" - orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RecordVersionCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RecordVersionFilter - ): RecordVersionsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3940,24 +3950,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3976,24 +3984,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByArchivedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4012,22 +4020,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4046,22 +4056,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4080,22 +4092,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4114,22 +4128,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4148,22 +4166,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4182,22 +4204,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4216,22 +4242,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4250,22 +4278,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4284,22 +4314,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4318,24 +4350,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByCreatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4354,24 +4386,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByUpdatedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4390,24 +4422,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4426,24 +4458,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4462,24 +4494,24 @@ type CcbcUser 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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4498,24 +4530,24 @@ type CcbcUser 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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4534,22 +4566,24 @@ type CcbcUser 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4568,22 +4602,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4602,22 +4638,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4650,8 +4686,8 @@ type CcbcUser implements Node { filter: ApplicationSowDataFilter ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4670,22 +4706,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4704,22 +4740,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4738,22 +4776,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4772,22 +4812,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4806,22 +4848,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4840,24 +4882,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4876,24 +4916,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4912,24 +4950,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4948,22 +4984,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4982,22 +5018,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5016,22 +5052,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5050,22 +5086,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5084,22 +5120,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5118,22 +5154,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5152,22 +5188,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5186,22 +5222,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5220,22 +5256,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5254,24 +5292,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5290,26 +5328,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5328,26 +5364,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5366,26 +5400,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5404,24 +5436,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5440,24 +5472,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5476,22 +5506,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5510,22 +5540,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5544,22 +5574,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5578,24 +5608,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5614,24 +5642,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5650,24 +5676,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5686,24 +5710,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5722,24 +5744,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5758,24 +5778,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5794,24 +5812,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5830,24 +5846,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5866,24 +5880,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5902,22 +5916,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5936,22 +5952,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5970,22 +5988,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6004,24 +6024,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByCreatedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6040,24 +6060,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6076,24 +6096,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6112,24 +6130,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6148,24 +6164,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6184,24 +6198,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6220,22 +6232,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6254,22 +6266,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6288,22 +6300,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6322,22 +6334,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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6356,22 +6368,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6390,22 +6402,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6424,24 +6436,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6460,24 +6470,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6496,24 +6504,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6532,22 +6538,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6566,22 +6572,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6600,22 +6606,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6634,22 +6640,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6668,22 +6674,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6702,22 +6708,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6736,24 +6742,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6772,24 +6776,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6808,24 +6810,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `RecordVersion`.""" + recordVersionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6844,22 +6844,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RecordVersion`.""" + orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: RecordVersionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: RecordVersionFilter + ): RecordVersionsConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6878,22 +6878,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6912,22 +6912,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6946,22 +6946,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6980,22 +6980,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7014,22 +7014,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7048,22 +7048,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7082,22 +7082,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7116,22 +7116,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7150,22 +7150,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7184,22 +7184,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7218,22 +7218,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7252,22 +7252,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7286,22 +7286,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7320,22 +7320,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7354,22 +7354,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -7388,22 +7388,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7434,10 +7434,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7468,10 +7468,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -7490,22 +7490,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7536,10 +7536,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7570,10 +7570,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -7592,22 +7592,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7638,44 +7638,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GaplessCounterCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7706,10 +7672,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7728,22 +7694,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 - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -7762,22 +7728,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 `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7808,10 +7774,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7842,10 +7808,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7864,22 +7830,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -7898,22 +7864,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7944,10 +7910,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7978,10 +7944,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8000,22 +7966,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -8034,22 +8000,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8080,10 +8046,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8102,22 +8068,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 - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8148,10 +8114,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8182,10 +8148,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8204,22 +8170,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 + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8238,22 +8204,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8284,10 +8250,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8318,10 +8284,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8352,44 +8318,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8420,10 +8352,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8454,10 +8386,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8488,10 +8420,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8510,22 +8442,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8556,10 +8488,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8578,22 +8510,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 - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8612,22 +8544,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8646,22 +8578,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 `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 - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8680,22 +8612,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 - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8726,78 +8658,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8828,10 +8692,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8850,22 +8714,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 - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8884,22 +8748,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 `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8918,22 +8782,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 `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 - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8964,10 +8828,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8986,22 +8850,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 - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9032,10 +8896,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9066,10 +8930,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9100,10 +8964,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9134,10 +8998,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9156,22 +9020,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9202,10 +9066,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9236,10 +9100,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9258,22 +9122,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9292,22 +9156,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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9338,10 +9202,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9360,22 +9224,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 - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9394,22 +9258,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 - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9440,10 +9304,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -9462,22 +9326,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9496,22 +9360,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 - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9542,10 +9406,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9576,10 +9440,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -9598,22 +9462,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9644,44 +9508,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9712,10 +9542,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9746,10 +9576,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -9768,22 +9598,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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9802,22 +9632,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9848,10 +9678,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9882,10 +9712,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9916,44 +9746,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9984,10 +9780,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10018,10 +9814,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10040,22 +9836,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 + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10086,10 +9882,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10120,10 +9916,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10142,22 +9938,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 - ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10188,10 +9984,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10222,10 +10018,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10256,10 +10052,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10290,10 +10086,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10324,44 +10120,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10380,22 +10142,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 + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10426,10 +10188,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10460,10 +10222,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -10482,22 +10244,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 `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10516,22 +10278,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10562,10 +10324,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10596,10 +10358,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10618,22 +10380,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 - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -10652,22 +10414,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10698,10 +10460,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10732,10 +10494,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -10754,22 +10516,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10800,10 +10562,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10834,10 +10596,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GaplessCounterCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + applicationsByApplicationAnnouncedCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10868,10 +10664,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10902,10 +10698,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10936,10 +10732,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByApplicationAnnouncedUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10970,10 +10766,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11004,10 +10800,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11038,10 +10834,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByApplicationAnnouncedArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11072,10 +10868,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11106,10 +10902,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11140,10 +10936,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11174,10 +10970,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11208,10 +11004,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11242,10 +11038,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11276,10 +11072,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11310,10 +11106,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11344,10 +11140,78 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11378,10 +11242,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11400,22 +11264,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 - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11446,10 +11310,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11480,10 +11344,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11502,22 +11366,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 - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11548,10 +11412,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11570,22 +11434,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11616,10 +11480,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11650,10 +11514,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11684,10 +11548,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11706,22 +11570,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11740,22 +11604,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11786,10 +11650,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11808,22 +11672,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 - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11842,22 +11706,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11876,22 +11740,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 - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11910,22 +11774,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 - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11956,10 +11820,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11990,10 +11854,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12012,22 +11876,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 - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12058,10 +11922,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12092,10 +11956,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12114,22 +11978,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 - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12160,10 +12024,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12182,22 +12046,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 + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12228,10 +12092,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12262,10 +12126,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12296,10 +12160,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12318,22 +12182,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12352,22 +12216,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12398,78 +12262,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): 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! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12500,10 +12296,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12534,10 +12330,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12568,10 +12364,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12602,10 +12398,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12636,10 +12432,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12670,10 +12466,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12704,10 +12500,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12738,10 +12534,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12772,10 +12568,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12806,10 +12602,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12840,10 +12636,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12874,10 +12670,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12908,10 +12704,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12942,10 +12738,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12976,10 +12772,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13010,10 +12806,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13044,10 +12840,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13078,10 +12874,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13112,10 +12908,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13146,10 +12942,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13180,10 +12976,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13202,22 +12998,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 + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13248,10 +13044,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13282,10 +13078,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13304,22 +13100,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13350,10 +13146,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13384,10 +13180,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13406,22 +13202,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 - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13452,10 +13248,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13486,10 +13282,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13508,22 +13304,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13554,10 +13350,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13588,10 +13384,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -13610,22 +13406,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13656,10 +13452,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13690,10 +13486,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -13712,22 +13508,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13758,10 +13554,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13792,10 +13588,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -13814,22 +13610,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13860,10 +13656,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13894,10 +13690,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13916,22 +13712,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13962,10 +13758,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13996,10 +13792,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14018,22 +13814,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14064,10 +13860,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14098,10 +13894,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14120,22 +13916,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 - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14166,10 +13962,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14200,10 +13996,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14222,22 +14018,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14268,10 +14064,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14302,10 +14098,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14324,22 +14120,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 + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14370,10 +14166,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14404,10 +14200,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14426,22 +14222,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -14460,22 +14256,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14506,44 +14302,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14574,10 +14336,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14596,22 +14358,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 - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -14630,22 +14392,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14676,10 +14438,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14710,10 +14472,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14744,10 +14506,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + ): 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`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14778,10 +14574,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14812,10 +14608,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14846,10 +14642,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14880,10 +14676,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14914,10 +14710,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14948,10 +14744,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14982,10 +14778,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15016,10 +14812,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15050,10 +14846,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15084,10 +14880,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15118,10 +14914,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15152,10 +14948,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15186,10 +14982,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15220,10 +15016,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15254,10 +15050,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15288,10 +15084,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15322,10 +15118,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15356,10 +15152,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15390,10 +15186,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15424,10 +15220,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15458,10 +15254,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15492,10 +15288,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15526,10 +15322,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15560,10 +15356,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15594,10 +15390,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15628,10 +15424,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15662,10 +15458,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15696,10 +15492,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15730,44 +15526,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15798,10 +15560,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15832,44 +15594,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15900,10 +15628,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15934,10 +15662,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15956,22 +15684,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16002,10 +15730,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16024,22 +15752,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 - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -16058,22 +15786,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16104,10 +15832,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16138,10 +15866,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16172,10 +15900,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16206,10 +15968,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16240,10 +16002,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16274,10 +16036,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16308,10 +16104,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16342,10 +16138,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16364,22 +16160,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16410,10 +16206,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16444,10 +16240,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16466,22 +16262,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16512,10 +16308,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16546,10 +16342,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16568,22 +16364,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 - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16614,10 +16410,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16648,10 +16444,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16670,22 +16466,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 - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16716,10 +16512,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16750,10 +16546,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16784,10 +16580,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadCreatedByAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16818,10 +16648,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16852,10 +16682,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16874,22 +16704,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 + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -16908,22 +16738,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 - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16954,10 +16784,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16988,10 +16818,78 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17022,10 +16920,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17056,10 +16954,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17090,10 +17022,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17124,10 +17056,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17158,10 +17090,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17192,10 +17158,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17226,10 +17192,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17260,10 +17226,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): 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`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17294,10 +17294,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17328,10 +17328,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17362,10 +17362,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17396,10 +17396,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17430,10 +17464,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17464,10 +17498,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17498,10 +17532,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusArchivedByAndStatus( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17532,10 +17600,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17566,10 +17634,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17600,10 +17668,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17634,10 +17736,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17668,10 +17770,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17702,10 +17804,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17736,10 +17838,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17770,10 +17872,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17804,10 +17906,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17838,10 +17940,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersByCbcArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17872,10 +17974,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -17894,22 +17996,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -17928,22 +18030,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersByCbcDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17974,10 +18076,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + ccbcUsersByCbcDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18008,10 +18110,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -18030,22 +18132,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -18064,22 +18166,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + ccbcUsersByCbcDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18110,10 +18212,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersByCbcDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18144,10 +18246,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -18166,22 +18268,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -18200,22 +18302,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersByCbcDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18246,10 +18348,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18280,10 +18382,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -18302,22 +18404,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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18348,10 +18450,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18382,10 +18484,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -18404,22 +18506,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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18450,10 +18552,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18484,10 +18586,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -18506,22 +18608,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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18552,10 +18654,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18586,10 +18688,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -18608,22 +18710,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 - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -18642,22 +18744,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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18688,10 +18790,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18722,10 +18824,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -18744,22 +18846,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 - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -18778,22 +18880,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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18812,22 +18914,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18846,22 +18948,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -18880,22 +18982,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 - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -18914,22 +19016,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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18948,22 +19050,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18982,22 +19084,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19028,10 +19130,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19062,10 +19164,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19084,22 +19186,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19118,22 +19220,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndCreatedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19164,10 +19266,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19198,10 +19300,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19220,22 +19322,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19266,10 +19368,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19300,10 +19402,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19322,22 +19424,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19368,10 +19470,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19402,10 +19504,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19424,22 +19526,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByReportingGcpeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19470,10 +19572,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19504,10 +19606,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19526,22 +19628,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( + ccbcUsersByReportingGcpeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19572,10 +19674,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( + ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19606,10 +19708,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19628,22 +19730,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19674,10 +19776,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19708,10 +19810,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -19730,22 +19832,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19776,10 +19878,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19810,10 +19912,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19844,10 +19980,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19878,10 +20014,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2CreatedByAndSowId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19912,10 +20082,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19946,10 +20116,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2UpdatedByAndSowId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19980,10 +20184,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20014,44 +20218,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityCreatedByAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20070,22 +20240,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20116,10 +20286,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20150,44 +20320,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityUpdatedByAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20206,22 +20342,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20252,10 +20388,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20286,44 +20422,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityArchivedByAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20342,22 +20444,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20388,10 +20490,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20422,10 +20524,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20444,22 +20546,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndArchivedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20490,10 +20592,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20524,10 +20626,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20546,22 +20648,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndCreatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20592,10 +20694,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20626,10 +20728,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20648,22 +20750,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 - ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20694,10 +20796,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20728,10 +20830,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -20750,22 +20852,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 - ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20796,10 +20898,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20830,10 +20932,82 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedArchivedByAndApplicationId( +"""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 + + """Program type of the project""" + program: String! + + """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 `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20852,22 +21026,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20886,22 +21062,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20920,3496 +21098,4115 @@ 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! -} + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! -"""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 `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [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: ApplicationGisDataCondition -"""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: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( + """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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [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: ProjectInformationDataCondition - """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: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Checks for equality with the object’s `emailAddress` field.""" - emailAddress: String + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( + """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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition - """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: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! -""" -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 `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( + """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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [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: ApplicationClaimsDataCondition - """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: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [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: ApplicationClaimsExcelDataCondition - """Some related `ccbcUsersByUpdatedBy` exist.""" - ccbcUsersByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" - ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( + """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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [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: ApplicationCommunityProgressReportDataCondition - """Some related `intakesByArchivedBy` exist.""" - intakesByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Filter by the object’s `applicationsByCreatedBy` relation.""" - applicationsByCreatedBy: CcbcUserToManyApplicationFilter + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( + """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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [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: ApplicationCommunityReportExcelDataCondition - """Some related `applicationStatusesByCreatedBy` exist.""" - applicationStatusesByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" - applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( + """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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [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: ApplicationInternalDescriptionCondition - """Some related `attachmentsByUpdatedBy` exist.""" - attachmentsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Filter by the object’s `attachmentsByArchivedBy` relation.""" - attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( + """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [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: ApplicationMilestoneDataCondition - """Some related `formDataByArchivedBy` exist.""" - formDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Filter by the object’s `analystsByCreatedBy` relation.""" - analystsByCreatedBy: CcbcUserToManyAnalystFilter + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( + """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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [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: ApplicationMilestoneExcelDataCondition - """Some related `applicationAnalystLeadsByCreatedBy` exist.""" - applicationAnalystLeadsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" - applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( + """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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [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: ApplicationSowDataCondition - """Some related `rfiDataByUpdatedBy` exist.""" - rfiDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Filter by the object’s `rfiDataByArchivedBy` relation.""" - rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( + """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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [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: ChangeRequestDataCondition - """Some related `assessmentDataByArchivedBy` exist.""" - assessmentDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" - applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [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: NotificationCondition - """Some related `recordVersionsByCreatedBy` exist.""" - recordVersionsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! - """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" - conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [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: ApplicationPackageCondition - """Some related `gisDataByCreatedBy` exist.""" - gisDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Filter by the object’s `gisDataByUpdatedBy` relation.""" - gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( + """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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [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: ApplicationPendingChangeRequestCondition - """Some related `applicationGisDataByUpdatedBy` exist.""" - applicationGisDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" - applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( + """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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [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: ApplicationProjectTypeCondition - """Some related `announcementsByArchivedBy` exist.""" - announcementsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" - applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. - """ - applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" - applicationGisAssessmentHhsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! """ - Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - - """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" - applicationGisAssessmentHhsByUpdatedByExist: Boolean + applicationAnalystLeadsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. - """ - applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" - applicationGisAssessmentHhsByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" - applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationSowDataByCreatedBy` exist.""" - applicationSowDataByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" - applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationSowDataByUpdatedBy` exist.""" - applicationSowDataByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition - """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" - applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """Some related `applicationSowDataByArchivedBy` exist.""" - applicationSowDataByArchivedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab2SByCreatedBy` relation.""" - sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab2SByCreatedBy` exist.""" - sowTab2SByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" - sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab2SByUpdatedBy` exist.""" - sowTab2SByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab2SByArchivedBy` relation.""" - sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab2SByArchivedBy` exist.""" - sowTab2SByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Filter by the object’s `sowTab1SByCreatedBy` relation.""" - sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Some related `sowTab1SByCreatedBy` exist.""" - sowTab1SByCreatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" - sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab1SByUpdatedBy` exist.""" - sowTab1SByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab1SByArchivedBy` relation.""" - sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab1SByArchivedBy` exist.""" - sowTab1SByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" - projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `projectInformationDataByCreatedBy` exist.""" - projectInformationDataByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition - """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" - projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Some related `projectInformationDataByUpdatedBy` exist.""" - projectInformationDataByUpdatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" - projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `projectInformationDataByArchivedBy` exist.""" - projectInformationDataByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab7SByCreatedBy` relation.""" - sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab7SByCreatedBy` exist.""" - sowTab7SByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" - sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab7SByUpdatedBy` exist.""" - sowTab7SByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """Filter by the object’s `sowTab7SByArchivedBy` relation.""" - sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Some related `sowTab7SByArchivedBy` exist.""" - sowTab7SByArchivedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab8SByCreatedBy` relation.""" - sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab8SByCreatedBy` exist.""" - sowTab8SByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" - sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab8SByUpdatedBy` exist.""" - sowTab8SByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab8SByArchivedBy` relation.""" - sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab8SByArchivedBy` exist.""" - sowTab8SByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" - changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Some related `changeRequestDataByCreatedBy` exist.""" - changeRequestDataByCreatedByExist: Boolean + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" - changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `changeRequestDataByUpdatedBy` exist.""" - changeRequestDataByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" - changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `changeRequestDataByArchivedBy` exist.""" - changeRequestDataByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. - """ - applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! """ - Some related `applicationCommunityProgressReportDataByCreatedBy` exist. + computed column to return space separated list of amendment numbers for a change request """ - applicationCommunityProgressReportDataByCreatedByExist: Boolean + amendmentNumbers: String - """ - Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. - """ - applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """Computed column to return analyst lead of an application""" + analystLead: String - """ - Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. - """ - applicationCommunityProgressReportDataByUpdatedByExist: Boolean + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + announced: Boolean - """ - Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. - """ - applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """Computed column that returns list of announcements for the application""" + announcements( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `applicationCommunityProgressReportDataByArchivedBy` exist. - """ - applicationCommunityProgressReportDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. - """ - applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """ + 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 `applicationCommunityReportExcelDataByCreatedBy` exist.""" - applicationCommunityReportExcelDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. - """ - applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" - applicationCommunityReportExcelDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! - """ - Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. - """ - applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData - """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" - applicationCommunityReportExcelDataByArchivedByExist: Boolean + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData - """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" - applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Computed column to return external status of an application""" + externalStatus: String - """Some related `applicationClaimsDataByCreatedBy` exist.""" - applicationClaimsDataByCreatedByExist: Boolean + """Computed column to display form_data""" + formData: FormData - """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" - applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh - """Some related `applicationClaimsDataByUpdatedBy` exist.""" - applicationClaimsDataByUpdatedByExist: Boolean + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData - """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" - applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean - """Some related `applicationClaimsDataByArchivedBy` exist.""" - applicationClaimsDataByArchivedByExist: Boolean + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. - """ - applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" - applicationClaimsExcelDataByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. - """ - applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" - applicationClaimsExcelDataByUpdatedByExist: Boolean + """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 """ - Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. + Computed column to return the application announced status for an application """ - applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + package: Int - """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" - applicationClaimsExcelDataByArchivedByExist: Boolean + """Computed column to return project information data""" + projectInformation: ProjectInformationData - """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" - applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Computed column to display the project name""" + projectName: String - """Some related `applicationMilestoneDataByCreatedBy` exist.""" - applicationMilestoneDataByCreatedByExist: Boolean + """Computed column to return last RFI for an application""" + rfi: RfiData - """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" - applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Computed column to return status of an application""" + status: String - """Some related `applicationMilestoneDataByUpdatedBy` exist.""" - applicationMilestoneDataByUpdatedByExist: Boolean + """Computed column to return the order of the status""" + statusOrder: Int """ - Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. + Computed column to return the status order with the status name appended for sorting and filtering """ - applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter - - """Some related `applicationMilestoneDataByArchivedBy` exist.""" - applicationMilestoneDataByArchivedByExist: Boolean + statusSortFilter: String + zone: Int """ - Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. + Computed column to get single lowest zone from json data, used for sorting """ - applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - - """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" - applicationMilestoneExcelDataByCreatedByExist: Boolean + zones: [Int] - """ - Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. - """ - applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" - applicationMilestoneExcelDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. - """ - applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """ + 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 `applicationMilestoneExcelDataByArchivedBy` exist.""" - applicationMilestoneExcelDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" - cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcProjectsByCreatedBy` exist.""" - cbcProjectsByCreatedByExist: Boolean + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" - cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition - """Some related `cbcProjectsByUpdatedBy` exist.""" - cbcProjectsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! - """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" - cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcProjectsByArchivedBy` exist.""" - cbcProjectsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. - """ - applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" - applicationInternalDescriptionsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. - """ - applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" - applicationInternalDescriptionsByUpdatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. - """ - applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" - applicationInternalDescriptionsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" - applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationProjectTypesByCreatedBy` exist.""" - applicationProjectTypesByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" - applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter + """ + 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 `applicationProjectTypesByUpdatedBy` exist.""" - applicationProjectTypesByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" - applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationProjectTypesByArchivedBy` exist.""" - applicationProjectTypesByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `emailRecordsByCreatedBy` relation.""" - emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `emailRecordsByCreatedBy` exist.""" - emailRecordsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" - emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `emailRecordsByUpdatedBy` exist.""" - emailRecordsByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `emailRecordsByArchivedBy` relation.""" - emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter + """ + 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 `emailRecordsByArchivedBy` exist.""" - emailRecordsByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `notificationsByCreatedBy` relation.""" - notificationsByCreatedBy: CcbcUserToManyNotificationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `notificationsByCreatedBy` exist.""" - notificationsByCreatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `notificationsByUpdatedBy` relation.""" - notificationsByUpdatedBy: CcbcUserToManyNotificationFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `notificationsByUpdatedBy` exist.""" - notificationsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `notificationsByArchivedBy` relation.""" - notificationsByArchivedBy: CcbcUserToManyNotificationFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `notificationsByArchivedBy` exist.""" - notificationsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. - """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """ + 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 `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. - """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. - """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `cbcsByCreatedBy` relation.""" - cbcsByCreatedBy: CcbcUserToManyCbcFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcsByCreatedBy` exist.""" - cbcsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcsByUpdatedBy` relation.""" - cbcsByUpdatedBy: CcbcUserToManyCbcFilter + """ + 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 `cbcsByUpdatedBy` exist.""" - cbcsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcsByArchivedBy` relation.""" - cbcsByArchivedBy: CcbcUserToManyCbcFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcsByArchivedBy` exist.""" - cbcsByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcDataByCreatedBy` relation.""" - cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `cbcDataByCreatedBy` exist.""" - cbcDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `cbcDataByUpdatedBy` relation.""" - cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcDataByUpdatedBy` exist.""" - cbcDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcDataByArchivedBy` relation.""" - cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + """ + 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 `cbcDataByArchivedBy` exist.""" - cbcDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" - cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" - cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. - """ - cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" - cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" - cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter + """ + 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 `cbcDataChangeReasonsByCreatedBy` exist.""" - cbcDataChangeReasonsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" - cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" - cbcDataChangeReasonsByUpdatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" - cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" - cbcDataChangeReasonsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" - communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `communitiesSourceDataByCreatedBy` exist.""" - communitiesSourceDataByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" - communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter + """ + 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 `communitiesSourceDataByUpdatedBy` exist.""" - communitiesSourceDataByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" - communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `communitiesSourceDataByArchivedBy` exist.""" - communitiesSourceDataByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" - cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" - cbcProjectCommunitiesByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" - cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" - cbcProjectCommunitiesByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" - cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter + """ + 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 `cbcProjectCommunitiesByArchivedBy` exist.""" - cbcProjectCommunitiesByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" - reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `reportingGcpesByCreatedBy` exist.""" - reportingGcpesByCreatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" - reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `reportingGcpesByUpdatedBy` exist.""" - reportingGcpesByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" - reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `reportingGcpesByArchivedBy` exist.""" - reportingGcpesByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" - applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter + """ + 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 `applicationAnnouncedsByCreatedBy` exist.""" - applicationAnnouncedsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" - applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnnouncedsByUpdatedBy` exist.""" - applicationAnnouncedsByUpdatedByExist: Boolean + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" - applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GisDataCondition - """Some related `applicationAnnouncedsByArchivedBy` exist.""" - applicationAnnouncedsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! - """Filter by the object’s `keycloakJwtsBySub` relation.""" - keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `keycloakJwtsBySub` exist.""" - keycloakJwtsBySubExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [CcbcUserFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [CcbcUserFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: CcbcUserFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against Int fields. All fields are combined with a logical ‘and.’ -""" -input IntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value.""" - equalTo: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not equal to the specified value.""" - notEqualTo: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! - """Included in the specified list.""" - in: [Int!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [Int!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Int -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against String fields. All fields are combined with a logical ‘and.’ -""" -input StringFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value.""" - equalTo: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! - """Not equal to the specified value.""" - notEqualTo: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: String + """Only read the last `n` values of the set.""" + last: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Included in the specified list.""" - in: [String!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not included in the specified list.""" - notIn: [String!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than the specified value.""" - lessThan: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Less than or equal to the specified value.""" - lessThanOrEqualTo: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than the specified value.""" - greaterThan: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contains the specified string (case-sensitive).""" - includes: String + """Only read the last `n` values of the set.""" + last: Int - """Does not contain the specified string (case-sensitive).""" - notIncludes: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Contains the specified string (case-insensitive).""" - includesInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Does not contain the specified string (case-insensitive).""" - notIncludesInsensitive: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Starts with the specified string (case-sensitive).""" - startsWith: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Does not start with the specified string (case-sensitive).""" - notStartsWith: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Starts with the specified string (case-insensitive).""" - startsWithInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! - """Does not start with the specified string (case-insensitive).""" - notStartsWithInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Ends with the specified string (case-sensitive).""" - endsWith: String + """Only read the last `n` values of the set.""" + last: Int - """Does not end with the specified string (case-sensitive).""" - notEndsWith: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Ends with the specified string (case-insensitive).""" - endsWithInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Does not end with the specified string (case-insensitive).""" - notEndsWithInsensitive: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - like: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLike: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - likeInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! - """ - Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLikeInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Equal to the specified value (case-insensitive).""" - equalToInsensitive: String + """Only read the last `n` values of the set.""" + last: Int - """Not equal to the specified value (case-insensitive).""" - notEqualToInsensitive: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Not equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - distinctFromInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - notDistinctFromInsensitive: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Included in the specified list (case-insensitive).""" - inInsensitive: [String!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not included in the specified list (case-insensitive).""" - notInInsensitive: [String!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Less than the specified value (case-insensitive).""" - lessThanInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! - """Less than or equal to the specified value (case-insensitive).""" - lessThanOrEqualToInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Greater than the specified value (case-insensitive).""" - greaterThanInsensitive: String + """Only read the last `n` values of the set.""" + last: Int - """Greater than or equal to the specified value (case-insensitive).""" - greaterThanOrEqualToInsensitive: String -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ -""" -input DatetimeFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value.""" - equalTo: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not equal to the specified value.""" - notEqualTo: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! - """Included in the specified list.""" - in: [Datetime!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [Datetime!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Datetime -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ -""" -input BooleanFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value.""" - equalTo: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! - """Not equal to the specified value.""" - notEqualTo: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Included in the specified list.""" - in: [Boolean!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not included in the specified list.""" - notIn: [Boolean!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than the specified value.""" - lessThan: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than the specified value.""" - greaterThan: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Boolean -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCcbcUserFilter { - """ - Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CcbcUserFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyIntakeFilter { - """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: IntakeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: IntakeFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input IntakeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `openTimestamp` field.""" - openTimestamp: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `closeTimestamp` field.""" - closeTimestamp: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationNumberSeqName` field.""" - applicationNumberSeqName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `counterId` field.""" - counterId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `hidden` field.""" - hidden: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `hiddenCode` field.""" - hiddenCode: UUIDFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `rollingIntake` field.""" - rollingIntake: BooleanFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `applicationsByIntakeId` relation.""" - applicationsByIntakeId: IntakeToManyApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Some related `applicationsByIntakeId` exist.""" - applicationsByIntakeIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `gaplessCounterByCounterId` relation.""" - gaplessCounterByCounterId: GaplessCounterFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """A related `gaplessCounterByCounterId` exists.""" - gaplessCounterByCounterIdExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [IntakeFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [IntakeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: IntakeFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ -""" -input UUIDFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value.""" - equalTo: UUID + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not equal to the specified value.""" - notEqualTo: UUID + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: UUID + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: UUID + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Included in the specified list.""" - in: [UUID!] + """Only read the last `n` values of the set.""" + last: Int - """Not included in the specified list.""" - notIn: [UUID!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than the specified value.""" - lessThan: UUID + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: UUID + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than the specified value.""" - greaterThan: UUID + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: UUID -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). -""" -scalar UUID + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ -""" -input IntakeToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcNumber` field.""" - ccbcNumber: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `owner` field.""" - owner: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `intakeId` field.""" - intakeId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `program` field.""" - program: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `amendmentNumbers` field.""" - amendmentNumbers: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `analystLead` field.""" - analystLead: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `analystStatus` field.""" - analystStatus: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `externalStatus` field.""" - externalStatus: 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 `hasRfiOpen` field.""" - hasRfiOpen: BooleanFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `intakeNumber` field.""" - intakeNumber: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `internalDescription` field.""" - internalDescription: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `organizationName` field.""" - organizationName: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `package` field.""" - package: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `projectName` field.""" - projectName: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `status` field.""" - status: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `statusSortFilter` field.""" - statusSortFilter: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `zone` field.""" - zone: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `zones` field.""" - zones: IntListFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationStatusesByApplicationId` relation.""" - applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationStatusesByApplicationId` exist.""" - applicationStatusesByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `attachmentsByApplicationId` relation.""" - attachmentsByApplicationId: ApplicationToManyAttachmentFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `attachmentsByApplicationId` exist.""" - attachmentsByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationFormDataByApplicationId` relation.""" - applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + """ + 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 `applicationFormDataByApplicationId` exist.""" - applicationFormDataByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. - """ - applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnalystLeadsByApplicationId` exist.""" - applicationAnalystLeadsByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" - applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationRfiDataByApplicationId` exist.""" - applicationRfiDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `assessmentDataByApplicationId` relation.""" - assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `assessmentDataByApplicationId` exist.""" - assessmentDataByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationPackagesByApplicationId` relation.""" - applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter + """ + 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 `applicationPackagesByApplicationId` exist.""" - applicationPackagesByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `conditionalApprovalDataByApplicationId` relation. - """ - conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `conditionalApprovalDataByApplicationId` exist.""" - conditionalApprovalDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationGisDataByApplicationId` relation.""" - applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationGisDataByApplicationId` exist.""" - applicationGisDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! - """ - Filter by the object’s `applicationAnnouncementsByApplicationId` relation. - """ - applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationAnnouncementsByApplicationId` exist.""" - applicationAnnouncementsByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. - """ - applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter + """ + 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 `applicationGisAssessmentHhsByApplicationId` exist.""" - applicationGisAssessmentHhsByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationSowDataByApplicationId` relation.""" - applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationSowDataByApplicationId` exist.""" - applicationSowDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `projectInformationDataByApplicationId` relation. - """ - projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `projectInformationDataByApplicationId` exist.""" - projectInformationDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `changeRequestDataByApplicationId` relation.""" - changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `changeRequestDataByApplicationId` exist.""" - changeRequestDataByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. - """ - applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter + """ + 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 `applicationCommunityProgressReportDataByApplicationId` exist. - """ - applicationCommunityProgressReportDataByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. - """ - applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `applicationCommunityReportExcelDataByApplicationId` exist. - """ - applicationCommunityReportExcelDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationClaimsDataByApplicationId` relation. - """ - applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationClaimsDataByApplicationId` exist.""" - applicationClaimsDataByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - """ - Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. - """ - applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationClaimsExcelDataByApplicationId` exist.""" - applicationClaimsExcelDataByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationMilestoneDataByApplicationId` relation. - """ - applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter + """ + 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 `applicationMilestoneDataByApplicationId` exist.""" - applicationMilestoneDataByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. - """ - applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" - applicationMilestoneExcelDataByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. - """ - applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationInternalDescriptionsByApplicationId` exist.""" - applicationInternalDescriptionsByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! - """ - Filter by the object’s `applicationProjectTypesByApplicationId` relation. - """ - applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationProjectTypesByApplicationId` exist.""" - applicationProjectTypesByApplicationIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `notificationsByApplicationId` relation.""" - notificationsByApplicationId: ApplicationToManyNotificationFilter + """ + 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 `notificationsByApplicationId` exist.""" - notificationsByApplicationIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. - """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `applicationAnnouncedsByApplicationId` relation. - """ - applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationAnnouncedsByApplicationId` exist.""" - applicationAnnouncedsByApplicationIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `intakeByIntakeId` relation.""" - intakeByIntakeId: IntakeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `intakeByIntakeId` exists.""" - intakeByIntakeIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [ApplicationFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ -""" -input IntListFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value.""" - equalTo: [Int] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not equal to the specified value.""" - notEqualTo: [Int] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: [Int] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [Int] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Less than the specified value.""" - lessThan: [Int] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [Int] + """Only read the last `n` values of the set.""" + last: Int - """Greater than the specified value.""" - greaterThan: [Int] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [Int] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Contains the specified list of values.""" - contains: [Int] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Contained by the specified list of values.""" - containedBy: [Int] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Overlaps the specified list of values.""" - overlaps: [Int] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Any array item is equal to the specified value.""" - anyEqualTo: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Any array item is not equal to the specified value.""" - anyNotEqualTo: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Any array item is less than the specified value.""" - anyLessThan: Int + """Only read the last `n` values of the set.""" + last: Int - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Any array item is greater than the specified value.""" - anyGreaterThan: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: Int -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `status` field.""" - status: 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 `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" - attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `attachmentsByApplicationStatusId` exist.""" - attachmentsByApplicationStatusIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationStatusTypeByStatus` relation.""" - applicationStatusTypeByStatus: ApplicationStatusTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `applicationStatusTypeByStatus` exists.""" - applicationStatusTypeByStatusExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationStatusFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [ApplicationStatusFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! - """Negates the expression.""" - not: ApplicationStatusFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input AttachmentFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `file` field.""" - file: UUIDFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `fileName` field.""" - fileName: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `fileType` field.""" - fileType: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `fileSize` field.""" - fileSize: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationStatusId` field.""" - applicationStatusId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationStatusByApplicationStatusId` relation. - """ - applicationStatusByApplicationStatusId: ApplicationStatusFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `applicationStatusByApplicationStatusId` exists.""" - applicationStatusByApplicationStatusIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [AttachmentFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [AttachmentFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: AttachmentFilter -} + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! - """Filter by the object’s `visibleByApplicant` field.""" - visibleByApplicant: BooleanFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationStatusesByStatus` relation.""" - applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationStatusesByStatus` exist.""" - applicationStatusesByStatusExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationStatusTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationStatusTypeFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: ApplicationStatusTypeFilter -} - -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter - - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFormDataFilter { - """Filter by the object’s `formDataId` field.""" - formDataId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `formDataByFormDataId` relation.""" - formDataByFormDataId: FormDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [ApplicationFormDataFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationFormDataFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: ApplicationFormDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `lastEditedPage` field.""" - lastEditedPage: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `formSchemaId` field.""" - formSchemaId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `reasonForChange` field.""" - reasonForChange: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `isEditable` field.""" - isEditable: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationFormDataByFormDataId` relation.""" - applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationFormDataByFormDataId` exist.""" - applicationFormDataByFormDataIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. - """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" - formDataStatusTypeByFormDataStatusTypeIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `formByFormSchemaId` relation.""" - formByFormSchemaId: FormFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `formByFormSchemaId` exists.""" - formByFormSchemaIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for all expressions in this list.""" - and: [FormDataFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! - """Checks for any expressions in this list.""" - or: [FormDataFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: FormDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ -""" -input JSONFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value.""" - equalTo: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not equal to the specified value.""" - notEqualTo: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: JSON + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: JSON + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Included in the specified list.""" - in: [JSON!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! - """Not included in the specified list.""" - notIn: [JSON!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than the specified value.""" - lessThan: JSON + """Only read the last `n` values of the set.""" + last: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: JSON + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than the specified value.""" - greaterThan: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Contains the specified JSON.""" - contains: JSON + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Contains the specified key.""" - containsKey: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Contains all of the specified keys.""" - containsAllKeys: [String!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! - """Contains any of the specified keys.""" - containsAnyKeys: [String!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contained by the specified JSON.""" - containedBy: JSON -} + """Only read the last `n` values of the set.""" + last: Int -""" -A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). -""" -scalar JSON + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" - formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `formDataByFormDataStatusTypeId` exist.""" - formDataByFormDataStatusTypeIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [FormDataStatusTypeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [FormDataStatusTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: FormDataStatusTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataStatusTypeToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ -""" -input FormFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `slug` field.""" - slug: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `jsonSchema` field.""" - jsonSchema: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `formType` field.""" - formType: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `formDataByFormSchemaId` relation.""" - formDataByFormSchemaId: FormToManyFormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `formDataByFormSchemaId` exist.""" - formDataByFormSchemaIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `formTypeByFormType` relation.""" - formTypeByFormType: FormTypeFilter - - """A related `formTypeByFormType` exists.""" - formTypeByFormTypeExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [FormFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [FormFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: FormFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ -""" -input FormTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `formsByFormType` relation.""" - formsByFormType: FormTypeToManyFormFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `formsByFormType` exist.""" - formsByFormTypeExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [FormTypeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [FormTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: FormTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ -""" -input FormTypeToManyFormFilter { - """ - Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormFilter + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """ - No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `analystId` field.""" - analystId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `analystByAnalystId` relation.""" - analystByAnalystId: AnalystFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `analystByAnalystId` exists.""" - analystByAnalystIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationAnalystLeadFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [ApplicationAnalystLeadFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """Negates the expression.""" - not: ApplicationAnalystLeadFilter -} + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """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 `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `active` field.""" - active: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `email` field.""" - email: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" - applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnalystLeadsByAnalystId` exist.""" - applicationAnalystLeadsByAnalystIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [AnalystFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [AnalystFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: AnalystFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """ + 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 `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationRfiDataFilter { - """Filter by the object’s `rfiDataId` field.""" - rfiDataId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `rfiDataByRfiDataId` relation.""" - rfiDataByRfiDataId: RfiDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ApplicationRfiDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ApplicationRfiDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ApplicationRfiDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `rfiNumber` field.""" - rfiNumber: StringFilter + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnnouncementCondition - """Filter by the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" - applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationRfiDataByRfiDataId` exist.""" - applicationRfiDataByRfiDataIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! - """ - Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. - """ - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" - rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [RfiDataFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [RfiDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: RfiDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" - rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `rfiDataByRfiDataStatusTypeId` exist.""" - rfiDataByRfiDataStatusTypeIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [RfiDataStatusTypeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [RfiDataStatusTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: RfiDataStatusTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeToManyRfiDataFilter { - """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RfiDataFilter + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RfiDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `assessmentDataType` field.""" - assessmentDataType: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" - assessmentTypeByAssessmentDataType: AssessmentTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusTypeCondition - """A related `assessmentTypeByAssessmentDataType` exists.""" - assessmentTypeByAssessmentDataTypeExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [AssessmentDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [AssessmentDataFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! - """Negates the expression.""" - not: AssessmentDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `description` field.""" - description: 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 `assessmentDataByAssessmentDataType` relation.""" - assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `assessmentDataByAssessmentDataType` exist.""" - assessmentDataByAssessmentDataTypeExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [AssessmentTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [AssessmentTypeFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: AssessmentTypeFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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! } """ -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +Table containing intake numbers and their respective open and closing dates """ -input ApplicationToManyApplicationPackageFilter { +type Intake implements Node { """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - every: ApplicationPackageFilter + id: ID! - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """Unique ID for each intake number""" + rowId: Int! + + """Open date and time for an intake number""" + openTimestamp: Datetime! + + """Close date and time for an intake number""" + closeTimestamp: Datetime! + + """Unique intake number for a set of CCBC IDs""" + ccbcIntakeNumber: Int! """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + The name of the sequence used to generate CCBC ids. It is added via a trigger """ - none: ApplicationPackageFilter -} + applicationNumberSeqName: String -""" -A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPackageFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """created by user id""" + createdBy: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """created at timestamp""" + createdAt: Datetime! - """Filter by the object’s `package` field.""" - package: IntFilter + """updated by user id""" + updatedBy: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """updated at timestamp""" + updatedAt: Datetime! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """archived by user id""" + archivedBy: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """archived at timestamp""" + archivedAt: Datetime - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + The counter_id used by the gapless_counter to generate a gapless intake id + """ + counterId: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """A description of the intake""" + description: String - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """A column to denote whether the intake is visible to the public""" + hidden: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden + """ + hiddenCode: UUID - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """A column to denote whether the intake is a rolling intake""" + rollingIntake: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [ApplicationPackageFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [ApplicationPackageFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: ApplicationPackageFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! -""" -A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ConditionalApprovalDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ConditionalApprovalDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ConditionalApprovalDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ConditionalApprovalDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! } """ -A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). """ -input ApplicationGisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `batchId` field.""" - batchId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +scalar UUID - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter +"""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! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Primary key for the gapless counter""" + rowId: Int! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Primary key for the gapless counter""" + counter: Int! - """Filter by the object’s `gisDataByBatchId` relation.""" - gisDataByBatchId: GisDataFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int - """A related `gisDataByBatchId` exists.""" - gisDataByBatchIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [ApplicationGisDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [ApplicationGisDataFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: ApplicationGisDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input GisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationGisDataByBatchId` relation.""" - applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationGisDataByBatchId` exist.""" - applicationGisDataByBatchIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [GisDataFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [GisDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: GisDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! } -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input GisDataToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter - - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter - - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} +"""A connection to a list of `Intake` values.""" +type IntakesConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncementFilter { """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + A list of edges which contains the `Intake` and cursor to aid in pagination. """ - every: ApplicationAnnouncementFilter + edges: [IntakesEdge!]! - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter + """The count of *all* `Intake` you could get from the connection.""" + totalCount: Int! } -""" -A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnnouncementFilter { - """Filter by the object’s `announcementId` field.""" - announcementId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter +"""A `Intake` edge in the connection.""" +type IntakesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The `Intake` at the end of the edge.""" + node: Intake +} - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +"""A location in a connection that can be used for resuming pagination.""" +scalar Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """When paginating backwards, the cursor to continue.""" + startCursor: Cursor - """Filter by the object’s `isPrimary` field.""" - isPrimary: BooleanFilter + """When paginating forwards, the cursor to continue.""" + endCursor: Cursor +} - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter +"""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 + ROLLING_INTAKE_ASC + ROLLING_INTAKE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Filter by the object’s `announcementByAnnouncementId` relation.""" - announcementByAnnouncementId: AnnouncementFilter +""" +A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input IntakeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Checks for equality with the object’s `openTimestamp` field.""" + openTimestamp: Datetime - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Checks for equality with the object’s `closeTimestamp` field.""" + closeTimestamp: Datetime - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Checks for equality with the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Checks for equality with the object’s `applicationNumberSeqName` field. + """ + applicationNumberSeqName: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Checks for all expressions in this list.""" - and: [ApplicationAnnouncementFilter!] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Checks for any expressions in this list.""" - or: [ApplicationAnnouncementFilter!] + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Negates the expression.""" - not: ApplicationAnnouncementFilter + """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 + + """Checks for equality with the object’s `rollingIntake` field.""" + rollingIntake: Boolean } """ -A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ """ -input AnnouncementFilter { +input IntakeFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `ccbcNumbers` field.""" - ccbcNumbers: StringFilter + """Filter by the object’s `openTimestamp` field.""" + openTimestamp: DatetimeFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `closeTimestamp` field.""" + closeTimestamp: DatetimeFilter + + """Filter by the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: IntFilter + + """Filter by the object’s `applicationNumberSeqName` field.""" + applicationNumberSeqName: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -24429,13 +25226,26 @@ input AnnouncementFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """ - Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. - """ - applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter + """Filter by the object’s `counterId` field.""" + counterId: IntFilter - """Some related `applicationAnnouncementsByAnnouncementId` exist.""" - applicationAnnouncementsByAnnouncementIdExist: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter + + """Filter by the object’s `hidden` field.""" + hidden: BooleanFilter + + """Filter by the object’s `hiddenCode` field.""" + hiddenCode: UUIDFilter + + """Filter by the object’s `rollingIntake` field.""" + rollingIntake: BooleanFilter + + """Filter by the object’s `applicationsByIntakeId` relation.""" + applicationsByIntakeId: IntakeToManyApplicationFilter + + """Some related `applicationsByIntakeId` exist.""" + applicationsByIntakeIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -24455,195 +25265,357 @@ input AnnouncementFilter { """A related `ccbcUserByArchivedBy` exists.""" ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `gaplessCounterByCounterId` relation.""" + gaplessCounterByCounterId: GaplessCounterFilter + + """A related `gaplessCounterByCounterId` exists.""" + gaplessCounterByCounterIdExists: Boolean + """Checks for all expressions in this list.""" - and: [AnnouncementFilter!] + and: [IntakeFilter!] """Checks for any expressions in this list.""" - or: [AnnouncementFilter!] + or: [IntakeFilter!] """Negates the expression.""" - not: AnnouncementFilter + not: IntakeFilter } """ -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Int fields. All fields are combined with a logical ‘and.’ """ -input AnnouncementToManyApplicationAnnouncementFilter { +input IntFilter { """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationAnnouncementFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: Int + + """Not equal to the specified value.""" + notEqualTo: Int """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - some: ApplicationAnnouncementFilter + distinctFrom: Int + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Int + + """Included in the specified list.""" + in: [Int!] + + """Not included in the specified list.""" + notIn: [Int!] + + """Less than the specified value.""" + lessThan: Int + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Int + + """Greater than the specified value.""" + greaterThan: Int + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Int +} +""" +A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ +""" +input DatetimeFilter { """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - none: ApplicationAnnouncementFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: Datetime + + """Not equal to the specified value.""" + notEqualTo: Datetime + + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Datetime + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Datetime + + """Included in the specified list.""" + in: [Datetime!] + + """Not included in the specified list.""" + notIn: [Datetime!] + + """Less than the specified value.""" + lessThan: Datetime + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Datetime + + """Greater than the specified value.""" + greaterThan: Datetime + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Datetime } """ -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +A filter to be used against String fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationGisAssessmentHhFilter { +input StringFilter { """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ApplicationGisAssessmentHhFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: String + + """Not equal to the specified value.""" + notEqualTo: String """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - some: ApplicationGisAssessmentHhFilter + distinctFrom: String + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: String + + """Included in the specified list.""" + in: [String!] + + """Not included in the specified list.""" + notIn: [String!] + + """Less than the specified value.""" + lessThan: String + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: String + + """Greater than the specified value.""" + greaterThan: String + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: String + + """Contains the specified string (case-sensitive).""" + includes: String + + """Does not contain the specified string (case-sensitive).""" + notIncludes: String + + """Contains the specified string (case-insensitive).""" + includesInsensitive: String + + """Does not contain the specified string (case-insensitive).""" + notIncludesInsensitive: String + + """Starts with the specified string (case-sensitive).""" + startsWith: String + + """Does not start with the specified string (case-sensitive).""" + notStartsWith: String + + """Starts with the specified string (case-insensitive).""" + startsWithInsensitive: String + + """Does not start with the specified string (case-insensitive).""" + notStartsWithInsensitive: String + + """Ends with the specified string (case-sensitive).""" + endsWith: String + + """Does not end with the specified string (case-sensitive).""" + notEndsWith: String + + """Ends with the specified string (case-insensitive).""" + endsWithInsensitive: String + + """Does not end with the specified string (case-insensitive).""" + notEndsWithInsensitive: String """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - none: ApplicationGisAssessmentHhFilter -} + like: String -""" -A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationGisAssessmentHhFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLike: String - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + likeInsensitive: String - """Filter by the object’s `eligible` field.""" - eligible: FloatFilter + """ + Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLikeInsensitive: String - """Filter by the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: FloatFilter + """Equal to the specified value (case-insensitive).""" + equalToInsensitive: String - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Not equal to the specified value (case-insensitive).""" + notEqualToInsensitive: String - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Not equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + distinctFromInsensitive: String - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + notDistinctFromInsensitive: String - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Included in the specified list (case-insensitive).""" + inInsensitive: [String!] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Not included in the specified list (case-insensitive).""" + notInInsensitive: [String!] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Less than the specified value (case-insensitive).""" + lessThanInsensitive: String - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Less than or equal to the specified value (case-insensitive).""" + lessThanOrEqualToInsensitive: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Greater than the specified value (case-insensitive).""" + greaterThanInsensitive: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Greater than or equal to the specified value (case-insensitive).""" + greaterThanOrEqualToInsensitive: String +} - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +""" +A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ +""" +input BooleanFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Equal to the specified value.""" + equalTo: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Not equal to the specified value.""" + notEqualTo: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationGisAssessmentHhFilter!] + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationGisAssessmentHhFilter!] + """Included in the specified list.""" + in: [Boolean!] - """Negates the expression.""" - not: ApplicationGisAssessmentHhFilter + """Not included in the specified list.""" + notIn: [Boolean!] + + """Less than the specified value.""" + lessThan: Boolean + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Boolean + + """Greater than the specified value.""" + greaterThan: Boolean + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Boolean } """ -A filter to be used against Float fields. All fields are combined with a logical ‘and.’ +A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ """ -input FloatFilter { +input UUIDFilter { """ Is null (if `true` is specified) or is not null (if `false` is specified). """ isNull: Boolean """Equal to the specified value.""" - equalTo: Float + equalTo: UUID """Not equal to the specified value.""" - notEqualTo: Float + notEqualTo: UUID """ Not equal to the specified value, treating null like an ordinary value. """ - distinctFrom: Float + distinctFrom: UUID """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Float + notDistinctFrom: UUID """Included in the specified list.""" - in: [Float!] + in: [UUID!] """Not included in the specified list.""" - notIn: [Float!] + notIn: [UUID!] """Less than the specified value.""" - lessThan: Float + lessThan: UUID """Less than or equal to the specified value.""" - lessThanOrEqualTo: Float + lessThanOrEqualTo: UUID """Greater than the specified value.""" - greaterThan: Float + greaterThan: UUID """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Float + greaterThanOrEqualTo: UUID } """ -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationSowDataFilter { +input IntakeToManyApplicationFilter { """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationSowDataFilter + every: ApplicationFilter """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationSowDataFilter + some: ApplicationFilter """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationSowDataFilter + none: ApplicationFilter } """ -A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataFilter { +input ApplicationFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `ccbcNumber` field.""" + ccbcNumber: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `owner` field.""" + owner: StringFilter + + """Filter by the object’s `intakeId` field.""" + intakeId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -24663,296 +25635,246 @@ input ApplicationSowDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Filter by the object’s `program` field.""" + program: StringFilter - """Filter by the object’s `isAmendment` field.""" - isAmendment: BooleanFilter + """Filter by the object’s `amendmentNumbers` field.""" + amendmentNumbers: StringFilter - """Filter by the object’s `sowTab2SBySowId` relation.""" - sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter + """Filter by the object’s `analystLead` field.""" + analystLead: StringFilter - """Some related `sowTab2SBySowId` exist.""" - sowTab2SBySowIdExist: Boolean + """Filter by the object’s `analystStatus` field.""" + analystStatus: StringFilter - """Filter by the object’s `sowTab1SBySowId` relation.""" - sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter + """Filter by the object’s `announced` field.""" + announced: BooleanFilter - """Some related `sowTab1SBySowId` exist.""" - sowTab1SBySowIdExist: Boolean + """Filter by the object’s `externalStatus` field.""" + externalStatus: StringFilter - """Filter by the object’s `sowTab7SBySowId` relation.""" - sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter - - """Some related `sowTab7SBySowId` exist.""" - sowTab7SBySowIdExist: Boolean - - """Filter by the object’s `sowTab8SBySowId` relation.""" - sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter + """Filter by the object’s `hasRfiOpen` field.""" + hasRfiOpen: BooleanFilter - """Some related `sowTab8SBySowId` exist.""" - sowTab8SBySowIdExist: Boolean + """Filter by the object’s `intakeNumber` field.""" + intakeNumber: IntFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `internalDescription` field.""" + internalDescription: StringFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `organizationName` field.""" + organizationName: StringFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `package` field.""" + package: IntFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `projectName` field.""" + projectName: StringFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `status` field.""" + status: StringFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `statusSortFilter` field.""" + statusSortFilter: StringFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `zone` field.""" + zone: IntFilter - """Checks for all expressions in this list.""" - and: [ApplicationSowDataFilter!] + """Filter by the object’s `zones` field.""" + zones: IntListFilter - """Checks for any expressions in this list.""" - or: [ApplicationSowDataFilter!] + """Filter by the object’s `assessmentDataByApplicationId` relation.""" + assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter - """Negates the expression.""" - not: ApplicationSowDataFilter -} + """Some related `assessmentDataByApplicationId` exist.""" + assessmentDataByApplicationIdExist: Boolean -""" -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab2Filter { """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `conditionalApprovalDataByApplicationId` relation. """ - every: SowTab2Filter + conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Some related `conditionalApprovalDataByApplicationId` exist.""" + conditionalApprovalDataByApplicationIdExist: Boolean """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. """ - none: SowTab2Filter -} - -""" -A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab2Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" + applicationGisAssessmentHhsByApplicationIdExist: Boolean - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Filter by the object’s `applicationGisDataByApplicationId` relation.""" + applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Some related `applicationGisDataByApplicationId` exist.""" + applicationGisDataByApplicationIdExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Filter by the object’s `projectInformationDataByApplicationId` relation. + """ + projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `projectInformationDataByApplicationId` exist.""" + projectInformationDataByApplicationIdExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Filter by the object’s `applicationAnnouncedsByApplicationId` relation. + """ + applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `applicationAnnouncedsByApplicationId` exist.""" + applicationAnnouncedsByApplicationIdExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Filter by the object’s `applicationClaimsDataByApplicationId` relation. + """ + applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `applicationClaimsDataByApplicationId` exist.""" + applicationClaimsDataByApplicationIdExist: Boolean - """Checks for all expressions in this list.""" - and: [SowTab2Filter!] + """ + Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. + """ + applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter - """Checks for any expressions in this list.""" - or: [SowTab2Filter!] + """Some related `applicationClaimsExcelDataByApplicationId` exist.""" + applicationClaimsExcelDataByApplicationIdExist: Boolean - """Negates the expression.""" - not: SowTab2Filter -} + """ + Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. + """ + applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab1Filter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `applicationCommunityProgressReportDataByApplicationId` exist. """ - every: SowTab1Filter + applicationCommunityProgressReportDataByApplicationIdExist: Boolean """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. """ - some: SowTab1Filter + applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `applicationCommunityReportExcelDataByApplicationId` exist. """ - none: SowTab1Filter -} + applicationCommunityReportExcelDataByApplicationIdExist: Boolean -""" -A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab1Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. + """ + applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Some related `applicationInternalDescriptionsByApplicationId` exist.""" + applicationInternalDescriptionsByApplicationIdExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Filter by the object’s `applicationMilestoneDataByApplicationId` relation. + """ + applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `applicationMilestoneDataByApplicationId` exist.""" + applicationMilestoneDataByApplicationIdExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. + """ + applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" + applicationMilestoneExcelDataByApplicationIdExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationSowDataByApplicationId` relation.""" + applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationSowDataByApplicationId` exist.""" + applicationSowDataByApplicationIdExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `changeRequestDataByApplicationId` relation.""" + changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Some related `changeRequestDataByApplicationId` exist.""" + changeRequestDataByApplicationIdExist: Boolean - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Filter by the object’s `notificationsByApplicationId` relation.""" + notificationsByApplicationId: ApplicationToManyNotificationFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `notificationsByApplicationId` exist.""" + notificationsByApplicationIdExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `applicationPackagesByApplicationId` relation.""" + applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationPackagesByApplicationId` exist.""" + applicationPackagesByApplicationIdExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Filter by the object’s `applicationProjectTypesByApplicationId` relation. + """ + applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter - """Checks for all expressions in this list.""" - and: [SowTab1Filter!] + """Some related `applicationProjectTypesByApplicationId` exist.""" + applicationProjectTypesByApplicationIdExist: Boolean - """Checks for any expressions in this list.""" - or: [SowTab1Filter!] + """Filter by the object’s `attachmentsByApplicationId` relation.""" + attachmentsByApplicationId: ApplicationToManyAttachmentFilter - """Negates the expression.""" - not: SowTab1Filter -} + """Some related `attachmentsByApplicationId` exist.""" + attachmentsByApplicationIdExist: Boolean -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab7Filter { """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. """ - every: SowTab7Filter + applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """Some related `applicationAnalystLeadsByApplicationId` exist.""" + applicationAnalystLeadsByApplicationIdExist: Boolean """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationAnnouncementsByApplicationId` relation. """ - none: SowTab7Filter -} - -""" -A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab7Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `applicationAnnouncementsByApplicationId` exist.""" + applicationAnnouncementsByApplicationIdExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `applicationFormDataByApplicationId` relation.""" + applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `applicationFormDataByApplicationId` exist.""" + applicationFormDataByApplicationIdExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" + applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `applicationRfiDataByApplicationId` exist.""" + applicationRfiDataByApplicationIdExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `applicationStatusesByApplicationId` relation.""" + applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `applicationStatusesByApplicationId` exist.""" + applicationStatusesByApplicationIdExist: Boolean - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Filter by the object’s `intakeByIntakeId` relation.""" + intakeByIntakeId: IntakeFilter - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """A related `intakeByIntakeId` exists.""" + intakeByIntakeIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -24973,124 +25895,102 @@ input SowTab7Filter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [SowTab7Filter!] + and: [ApplicationFilter!] """Checks for any expressions in this list.""" - or: [SowTab7Filter!] + or: [ApplicationFilter!] """Negates the expression.""" - not: SowTab7Filter + not: ApplicationFilter } """ -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab8Filter { +input IntListFilter { """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: SowTab8Filter + isNull: Boolean - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """Equal to the specified value.""" + equalTo: [Int] + + """Not equal to the specified value.""" + notEqualTo: [Int] """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: SowTab8Filter -} - -""" -A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab8Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + distinctFrom: [Int] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [Int] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Less than the specified value.""" + lessThan: [Int] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [Int] - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Greater than the specified value.""" + greaterThan: [Int] - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [Int] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Contains the specified list of values.""" + contains: [Int] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Contained by the specified list of values.""" + containedBy: [Int] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Overlaps the specified list of values.""" + overlaps: [Int] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Any array item is equal to the specified value.""" + anyEqualTo: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Any array item is not equal to the specified value.""" + anyNotEqualTo: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Any array item is less than the specified value.""" + anyLessThan: Int - """Checks for all expressions in this list.""" - and: [SowTab8Filter!] + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: Int - """Checks for any expressions in this list.""" - or: [SowTab8Filter!] + """Any array item is greater than the specified value.""" + anyGreaterThan: Int - """Negates the expression.""" - not: SowTab8Filter + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: Int } """ -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyProjectInformationDataFilter { +input ApplicationToManyAssessmentDataFilter { """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ProjectInformationDataFilter + every: AssessmentDataFilter """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ProjectInformationDataFilter + some: AssessmentDataFilter """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ProjectInformationDataFilter + none: AssessmentDataFilter } """ -A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ProjectInformationDataFilter { +input AssessmentDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter @@ -25100,6 +26000,9 @@ input ProjectInformationDataFilter { """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter + """Filter by the object’s `assessmentDataType` field.""" + assessmentDataType: StringFilter + """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25121,8 +26024,11 @@ input ProjectInformationDataFilter { """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" + assessmentTypeByAssessmentDataType: AssessmentTypeFilter + + """A related `assessmentTypeByAssessmentDataType` exists.""" + assessmentTypeByAssessmentDataTypeExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25143,135 +26049,141 @@ input ProjectInformationDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ProjectInformationDataFilter!] + and: [AssessmentDataFilter!] """Checks for any expressions in this list.""" - or: [ProjectInformationDataFilter!] + or: [AssessmentDataFilter!] """Negates the expression.""" - not: ProjectInformationDataFilter + not: AssessmentDataFilter } """ -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyChangeRequestDataFilter { +input JSONFilter { """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ChangeRequestDataFilter + isNull: Boolean - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Equal to the specified value.""" + equalTo: JSON + + """Not equal to the specified value.""" + notEqualTo: JSON """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ChangeRequestDataFilter -} + distinctFrom: JSON -""" -A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ChangeRequestDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: JSON - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Included in the specified list.""" + in: [JSON!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Not included in the specified list.""" + notIn: [JSON!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than the specified value.""" + lessThan: JSON - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: JSON - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Greater than the specified value.""" + greaterThan: JSON - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: JSON - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Contains the specified JSON.""" + contains: JSON - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Contains the specified key.""" + containsKey: String - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Contains all of the specified keys.""" + containsAllKeys: [String!] - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Contains any of the specified keys.""" + containsAnyKeys: [String!] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Contained by the specified JSON.""" + containedBy: JSON +} - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean +""" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +""" +scalar JSON - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +""" +A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" + assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `assessmentDataByAssessmentDataType` exist.""" + assessmentDataByAssessmentDataTypeExist: Boolean """Checks for all expressions in this list.""" - and: [ChangeRequestDataFilter!] + and: [AssessmentTypeFilter!] """Checks for any expressions in this list.""" - or: [ChangeRequestDataFilter!] + or: [AssessmentTypeFilter!] """Negates the expression.""" - not: ChangeRequestDataFilter + not: AssessmentTypeFilter } """ -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationCommunityProgressReportDataFilter { +input AssessmentTypeToManyAssessmentDataFilter { """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationCommunityProgressReportDataFilter + every: AssessmentDataFilter """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationCommunityProgressReportDataFilter + some: AssessmentDataFilter """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationCommunityProgressReportDataFilter + none: AssessmentDataFilter } """ -A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataFilter { +input CcbcUserFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `emailAddress` field.""" + emailAddress: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25291,721 +26203,870 @@ input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter - - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `applicationsByCreatedBy` relation.""" + applicationsByCreatedBy: CcbcUserToManyApplicationFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `applicationsByCreatedBy` exist.""" + applicationsByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `applicationsByUpdatedBy` relation.""" + applicationsByUpdatedBy: CcbcUserToManyApplicationFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `applicationsByUpdatedBy` exist.""" + applicationsByUpdatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationCommunityProgressReportDataFilter!] + """Filter by the object’s `applicationsByArchivedBy` relation.""" + applicationsByArchivedBy: CcbcUserToManyApplicationFilter - """Checks for any expressions in this list.""" - or: [ApplicationCommunityProgressReportDataFilter!] + """Some related `applicationsByArchivedBy` exist.""" + applicationsByArchivedByExist: Boolean - """Negates the expression.""" - not: ApplicationCommunityProgressReportDataFilter -} + """Filter by the object’s `assessmentDataByCreatedBy` relation.""" + assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """Some related `assessmentDataByCreatedBy` exist.""" + assessmentDataByCreatedByExist: Boolean - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" + assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Some related `assessmentDataByUpdatedBy` exist.""" + assessmentDataByUpdatedByExist: Boolean -""" -A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `assessmentDataByArchivedBy` relation.""" + assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Some related `assessmentDataByArchivedBy` exist.""" + assessmentDataByArchivedByExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `announcementsByCreatedBy` relation.""" + announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `announcementsByCreatedBy` exist.""" + announcementsByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `announcementsByUpdatedBy` relation.""" + announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `announcementsByUpdatedBy` exist.""" + announcementsByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `announcementsByArchivedBy` relation.""" + announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `announcementsByArchivedBy` exist.""" + announcementsByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" + conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `conditionalApprovalDataByCreatedBy` exist.""" + conditionalApprovalDataByCreatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" + conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `conditionalApprovalDataByUpdatedBy` exist.""" + conditionalApprovalDataByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" + conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `conditionalApprovalDataByArchivedBy` exist.""" + conditionalApprovalDataByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `formDataByCreatedBy` relation.""" + formDataByCreatedBy: CcbcUserToManyFormDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `formDataByCreatedBy` exist.""" + formDataByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `formDataByUpdatedBy` relation.""" + formDataByUpdatedBy: CcbcUserToManyFormDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationCommunityReportExcelDataFilter!] + """Some related `formDataByUpdatedBy` exist.""" + formDataByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationCommunityReportExcelDataFilter!] + """Filter by the object’s `formDataByArchivedBy` relation.""" + formDataByArchivedBy: CcbcUserToManyFormDataFilter - """Negates the expression.""" - not: ApplicationCommunityReportExcelDataFilter -} + """Some related `formDataByArchivedBy` exist.""" + formDataByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsDataFilter { """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. """ - every: ApplicationClaimsDataFilter + applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" + applicationGisAssessmentHhsByCreatedByExist: Boolean """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. """ - none: ApplicationClaimsDataFilter -} + applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter -""" -A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationClaimsDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" + applicationGisAssessmentHhsByUpdatedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + """ + applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" + applicationGisAssessmentHhsByArchivedByExist: Boolean - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" + applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `applicationGisDataByCreatedBy` exist.""" + applicationGisDataByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" + applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `applicationGisDataByUpdatedBy` exist.""" + applicationGisDataByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" + applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationGisDataByArchivedBy` exist.""" + applicationGisDataByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" + projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Some related `projectInformationDataByCreatedBy` exist.""" + projectInformationDataByCreatedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" + projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `projectInformationDataByUpdatedBy` exist.""" + projectInformationDataByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" + projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `projectInformationDataByArchivedBy` exist.""" + projectInformationDataByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `rfiDataByCreatedBy` relation.""" + rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `rfiDataByCreatedBy` exist.""" + rfiDataByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `rfiDataByUpdatedBy` relation.""" + rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `rfiDataByUpdatedBy` exist.""" + rfiDataByUpdatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationClaimsDataFilter!] + """Filter by the object’s `rfiDataByArchivedBy` relation.""" + rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter - """Checks for any expressions in this list.""" - or: [ApplicationClaimsDataFilter!] + """Some related `rfiDataByArchivedBy` exist.""" + rfiDataByArchivedByExist: Boolean - """Negates the expression.""" - not: ApplicationClaimsDataFilter -} + """Filter by the object’s `intakesByCreatedBy` relation.""" + intakesByCreatedBy: CcbcUserToManyIntakeFilter -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsExcelDataFilter { - """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsExcelDataFilter + """Some related `intakesByCreatedBy` exist.""" + intakesByCreatedByExist: Boolean - """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsExcelDataFilter + """Filter by the object’s `intakesByUpdatedBy` relation.""" + intakesByUpdatedBy: CcbcUserToManyIntakeFilter - """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsExcelDataFilter -} + """Some related `intakesByUpdatedBy` exist.""" + intakesByUpdatedByExist: Boolean -""" -A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationClaimsExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `intakesByArchivedBy` relation.""" + intakesByArchivedBy: CcbcUserToManyIntakeFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Some related `intakesByArchivedBy` exist.""" + intakesByArchivedByExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" + applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `applicationAnnouncedsByCreatedBy` exist.""" + applicationAnnouncedsByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" + applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `applicationAnnouncedsByUpdatedBy` exist.""" + applicationAnnouncedsByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" + applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationAnnouncedsByArchivedBy` exist.""" + applicationAnnouncedsByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" + applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `applicationClaimsDataByCreatedBy` exist.""" + applicationClaimsDataByCreatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" + applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `applicationClaimsDataByUpdatedBy` exist.""" + applicationClaimsDataByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" + applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationClaimsDataByArchivedBy` exist.""" + applicationClaimsDataByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. + """ + applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" + applicationClaimsExcelDataByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. + """ + applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationClaimsExcelDataFilter!] + """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" + applicationClaimsExcelDataByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationClaimsExcelDataFilter!] + """ + Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. + """ + applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Negates the expression.""" - not: ApplicationClaimsExcelDataFilter -} + """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" + applicationClaimsExcelDataByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneDataFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. """ - every: ApplicationMilestoneDataFilter + applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `applicationCommunityProgressReportDataByCreatedBy` exist. """ - some: ApplicationMilestoneDataFilter + applicationCommunityProgressReportDataByCreatedByExist: Boolean """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. """ - none: ApplicationMilestoneDataFilter -} - -""" -A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationMilestoneDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """ + Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. + """ + applicationCommunityProgressReportDataByUpdatedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. + """ + applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Some related `applicationCommunityProgressReportDataByArchivedBy` exist. + """ + applicationCommunityProgressReportDataByArchivedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. + """ + applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" + applicationCommunityReportExcelDataByCreatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. + """ + applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" + applicationCommunityReportExcelDataByUpdatedByExist: Boolean - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """ + Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. + """ + applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" + applicationCommunityReportExcelDataByArchivedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. + """ + applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" + applicationInternalDescriptionsByCreatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. + """ + applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" + applicationInternalDescriptionsByUpdatedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. + """ + applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" + applicationInternalDescriptionsByArchivedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" + applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneDataFilter!] + """Some related `applicationMilestoneDataByCreatedBy` exist.""" + applicationMilestoneDataByCreatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneDataFilter!] + """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" + applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """Negates the expression.""" - not: ApplicationMilestoneDataFilter -} + """Some related `applicationMilestoneDataByUpdatedBy` exist.""" + applicationMilestoneDataByUpdatedByExist: Boolean -""" -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneExcelDataFilter { """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. """ - every: ApplicationMilestoneExcelDataFilter + applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter - """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Some related `applicationMilestoneDataByArchivedBy` exist.""" + applicationMilestoneDataByArchivedByExist: Boolean """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. """ - none: ApplicationMilestoneExcelDataFilter -} - -""" -A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationMilestoneExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" + applicationMilestoneExcelDataByCreatedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. + """ + applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" + applicationMilestoneExcelDataByUpdatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + """ + applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" + applicationMilestoneExcelDataByArchivedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" + applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `applicationSowDataByCreatedBy` exist.""" + applicationSowDataByCreatedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" + applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `applicationSowDataByUpdatedBy` exist.""" + applicationSowDataByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" + applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `applicationSowDataByArchivedBy` exist.""" + applicationSowDataByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" + cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" + cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneExcelDataFilter!] + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. + """ + cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneExcelDataFilter!] + """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" + cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean - """Negates the expression.""" - not: ApplicationMilestoneExcelDataFilter -} + """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" + cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter -""" -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationInternalDescriptionFilter { - """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationInternalDescriptionFilter + """Some related `cbcProjectsByCreatedBy` exist.""" + cbcProjectsByCreatedByExist: Boolean - """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationInternalDescriptionFilter + """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" + cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter - """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationInternalDescriptionFilter -} + """Some related `cbcProjectsByUpdatedBy` exist.""" + cbcProjectsByUpdatedByExist: Boolean -""" -A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationInternalDescriptionFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" + cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Some related `cbcProjectsByArchivedBy` exist.""" + cbcProjectsByArchivedByExist: Boolean - """Filter by the object’s `description` field.""" - description: StringFilter + """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" + changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `changeRequestDataByCreatedBy` exist.""" + changeRequestDataByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" + changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `changeRequestDataByUpdatedBy` exist.""" + changeRequestDataByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" + changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `changeRequestDataByArchivedBy` exist.""" + changeRequestDataByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `notificationsByCreatedBy` relation.""" + notificationsByCreatedBy: CcbcUserToManyNotificationFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `notificationsByCreatedBy` exist.""" + notificationsByCreatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `notificationsByUpdatedBy` relation.""" + notificationsByUpdatedBy: CcbcUserToManyNotificationFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `notificationsByUpdatedBy` exist.""" + notificationsByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `notificationsByArchivedBy` relation.""" + notificationsByArchivedBy: CcbcUserToManyNotificationFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `notificationsByArchivedBy` exist.""" + notificationsByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" + applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `applicationPackagesByCreatedBy` exist.""" + applicationPackagesByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" + applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter - """Checks for all expressions in this list.""" - and: [ApplicationInternalDescriptionFilter!] + """Some related `applicationPackagesByUpdatedBy` exist.""" + applicationPackagesByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationInternalDescriptionFilter!] + """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" + applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter - """Negates the expression.""" - not: ApplicationInternalDescriptionFilter -} + """Some related `applicationPackagesByArchivedBy` exist.""" + applicationPackagesByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationProjectTypeFilter { """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. """ - every: ApplicationProjectTypeFilter + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. """ - some: ApplicationProjectTypeFilter + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. """ - none: ApplicationProjectTypeFilter -} + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter -""" -A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationProjectTypeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" + applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Filter by the object’s `projectType` field.""" - projectType: StringFilter + """Some related `applicationProjectTypesByCreatedBy` exist.""" + applicationProjectTypesByCreatedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" + applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `applicationProjectTypesByUpdatedBy` exist.""" + applicationProjectTypesByUpdatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" + applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `applicationProjectTypesByArchivedBy` exist.""" + applicationProjectTypesByArchivedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" + ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `ccbcUsersByCreatedBy` exist.""" + ccbcUsersByCreatedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" + ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `ccbcUsersByUpdatedBy` exist.""" + ccbcUsersByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" + ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `ccbcUsersByArchivedBy` exist.""" + ccbcUsersByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `attachmentsByCreatedBy` relation.""" + attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `attachmentsByCreatedBy` exist.""" + attachmentsByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `attachmentsByUpdatedBy` relation.""" + attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `attachmentsByUpdatedBy` exist.""" + attachmentsByUpdatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationProjectTypeFilter!] + """Filter by the object’s `attachmentsByArchivedBy` relation.""" + attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter - """Checks for any expressions in this list.""" - or: [ApplicationProjectTypeFilter!] + """Some related `attachmentsByArchivedBy` exist.""" + attachmentsByArchivedByExist: Boolean - """Negates the expression.""" - not: ApplicationProjectTypeFilter -} + """Filter by the object’s `gisDataByCreatedBy` relation.""" + gisDataByCreatedBy: CcbcUserToManyGisDataFilter -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Some related `gisDataByCreatedBy` exist.""" + gisDataByCreatedByExist: Boolean - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """Filter by the object’s `gisDataByUpdatedBy` relation.""" + gisDataByUpdatedBy: CcbcUserToManyGisDataFilter - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """Some related `gisDataByUpdatedBy` exist.""" + gisDataByUpdatedByExist: Boolean -""" -A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input NotificationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `gisDataByArchivedBy` relation.""" + gisDataByArchivedBy: CcbcUserToManyGisDataFilter - """Filter by the object’s `notificationType` field.""" - notificationType: StringFilter + """Some related `gisDataByArchivedBy` exist.""" + gisDataByArchivedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `analystsByCreatedBy` relation.""" + analystsByCreatedBy: CcbcUserToManyAnalystFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `analystsByCreatedBy` exist.""" + analystsByCreatedByExist: Boolean - """Filter by the object’s `emailRecordId` field.""" - emailRecordId: IntFilter + """Filter by the object’s `analystsByUpdatedBy` relation.""" + analystsByUpdatedBy: CcbcUserToManyAnalystFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `analystsByUpdatedBy` exist.""" + analystsByUpdatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `analystsByArchivedBy` relation.""" + analystsByArchivedBy: CcbcUserToManyAnalystFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `analystsByArchivedBy` exist.""" + analystsByArchivedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" + applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationAnalystLeadsByCreatedBy` exist.""" + applicationAnalystLeadsByCreatedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" + applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" + applicationAnalystLeadsByUpdatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" + applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Filter by the object’s `emailRecordByEmailRecordId` relation.""" - emailRecordByEmailRecordId: EmailRecordFilter + """Some related `applicationAnalystLeadsByArchivedBy` exist.""" + applicationAnalystLeadsByArchivedByExist: Boolean - """A related `emailRecordByEmailRecordId` exists.""" - emailRecordByEmailRecordIdExists: 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 `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 `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 `cbcDataChangeReasonsByCreatedBy` relation.""" + cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" + cbcDataChangeReasonsByCreatedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" + cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" + cbcDataChangeReasonsByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" + cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter + + """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" + cbcDataChangeReasonsByArchivedByExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" + cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" + cbcProjectCommunitiesByCreatedByExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" + cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" + cbcProjectCommunitiesByUpdatedByExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" + cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" + cbcProjectCommunitiesByArchivedByExist: Boolean + + """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" + communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter + + """Some related `communitiesSourceDataByCreatedBy` exist.""" + communitiesSourceDataByCreatedByExist: Boolean + + """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" + communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter + + """Some related `communitiesSourceDataByUpdatedBy` exist.""" + communitiesSourceDataByUpdatedByExist: Boolean + + """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" + communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter + + """Some related `communitiesSourceDataByArchivedBy` exist.""" + communitiesSourceDataByArchivedByExist: Boolean + + """Filter by the object’s `emailRecordsByCreatedBy` relation.""" + emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter + + """Some related `emailRecordsByCreatedBy` exist.""" + emailRecordsByCreatedByExist: Boolean + + """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" + emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter + + """Some related `emailRecordsByUpdatedBy` exist.""" + emailRecordsByUpdatedByExist: Boolean + + """Filter by the object’s `emailRecordsByArchivedBy` relation.""" + emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter + + """Some related `emailRecordsByArchivedBy` exist.""" + emailRecordsByArchivedByExist: Boolean + + """Filter by the object’s `recordVersionsByCreatedBy` relation.""" + recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + + """Some related `recordVersionsByCreatedBy` exist.""" + recordVersionsByCreatedByExist: Boolean + + """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" + reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter + + """Some related `reportingGcpesByCreatedBy` exist.""" + reportingGcpesByCreatedByExist: Boolean + + """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" + reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter + + """Some related `reportingGcpesByUpdatedBy` exist.""" + reportingGcpesByUpdatedByExist: Boolean + + """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" + reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter + + """Some related `reportingGcpesByArchivedBy` exist.""" + reportingGcpesByArchivedByExist: 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 `sowTab2SByCreatedBy` relation.""" + sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByCreatedBy` exist.""" + sowTab2SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" + sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByUpdatedBy` exist.""" + sowTab2SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab2SByArchivedBy` relation.""" + sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByArchivedBy` exist.""" + sowTab2SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab7SByCreatedBy` relation.""" + sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByCreatedBy` exist.""" + sowTab7SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" + sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByUpdatedBy` exist.""" + sowTab7SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab7SByArchivedBy` relation.""" + sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByArchivedBy` exist.""" + sowTab7SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab8SByCreatedBy` relation.""" + sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByCreatedBy` exist.""" + sowTab8SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" + sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByUpdatedBy` exist.""" + sowTab8SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab8SByArchivedBy` relation.""" + sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByArchivedBy` exist.""" + sowTab8SByArchivedByExist: Boolean + + """Filter by the object’s `keycloakJwtsBySub` relation.""" + keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + + """Some related `keycloakJwtsBySub` exist.""" + keycloakJwtsBySubExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26026,36 +27087,84 @@ input NotificationFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [NotificationFilter!] + and: [CcbcUserFilter!] """Checks for any expressions in this list.""" - or: [NotificationFilter!] + or: [CcbcUserFilter!] """Negates the expression.""" - not: NotificationFilter + not: CcbcUserFilter } """ -A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input EmailRecordFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManyApplicationFilter { + """ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFilter - """Filter by the object’s `toEmail` field.""" - toEmail: StringFilter + """ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFilter - """Filter by the object’s `ccEmail` field.""" - ccEmail: StringFilter + """ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFilter +} - """Filter by the object’s `subject` field.""" - subject: StringFilter +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAssessmentDataFilter { + """ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AssessmentDataFilter - """Filter by the object’s `body` field.""" - body: StringFilter + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """Filter by the object’s `messageId` field.""" - messageId: StringFilter + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} + +""" +A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnnouncementFilter { + """ + Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnnouncementFilter + + """ + Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnnouncementFilter + + """ + No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnnouncementFilter +} + +""" +A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ +""" +input AnnouncementFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `ccbcNumbers` field.""" + ccbcNumbers: StringFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter @@ -26078,11 +27187,13 @@ input EmailRecordFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `notificationsByEmailRecordId` relation.""" - notificationsByEmailRecordId: EmailRecordToManyNotificationFilter + """ + Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. + """ + applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter - """Some related `notificationsByEmailRecordId` exist.""" - notificationsByEmailRecordIdExist: Boolean + """Some related `applicationAnnouncementsByAnnouncementId` exist.""" + applicationAnnouncementsByAnnouncementIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26103,71 +27214,45 @@ input EmailRecordFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [EmailRecordFilter!] + and: [AnnouncementFilter!] """Checks for any expressions in this list.""" - or: [EmailRecordFilter!] + or: [AnnouncementFilter!] """Negates the expression.""" - not: EmailRecordFilter -} - -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter - - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter - - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter + not: AnnouncementFilter } """ -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationPendingChangeRequestFilter { +input AnnouncementToManyApplicationAnnouncementFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPendingChangeRequestFilter + every: ApplicationAnnouncementFilter """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPendingChangeRequestFilter + some: ApplicationAnnouncementFilter """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPendingChangeRequestFilter + none: ApplicationAnnouncementFilter } """ -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input ApplicationAnnouncementFilter { + """Filter by the object’s `announcementId` field.""" + announcementId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter - - """Filter by the object’s `comment` field.""" - comment: StringFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26186,12 +27271,18 @@ input ApplicationPendingChangeRequestFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `isPrimary` field.""" + isPrimary: BooleanFilter + + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter + + """Filter by the object’s `announcementByAnnouncementId` relation.""" + announcementByAnnouncementId: AnnouncementFilter + """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26211,47 +27302,47 @@ input ApplicationPendingChangeRequestFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] + and: [ApplicationAnnouncementFilter!] """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] + or: [ApplicationAnnouncementFilter!] """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter + not: ApplicationAnnouncementFilter } """ -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationAnnouncedFilter { +input CcbcUserToManyConditionalApprovalDataFilter { """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationAnnouncedFilter + every: ConditionalApprovalDataFilter """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationAnnouncedFilter + some: ConditionalApprovalDataFilter """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationAnnouncedFilter + none: ConditionalApprovalDataFilter } """ -A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationAnnouncedFilter { +input ConditionalApprovalDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26296,125 +27387,202 @@ input ApplicationAnnouncedFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationAnnouncedFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationAnnouncedFilter!] - - """Negates the expression.""" - not: ApplicationAnnouncedFilter -} - -""" -A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `counter` field.""" - counter: IntFilter - - """Filter by the object’s `intakesByCounterId` relation.""" - intakesByCounterId: GaplessCounterToManyIntakeFilter - - """Some related `intakesByCounterId` exist.""" - intakesByCounterIdExist: Boolean - - """Checks for all expressions in this list.""" - and: [GaplessCounterFilter!] + and: [ConditionalApprovalDataFilter!] """Checks for any expressions in this list.""" - or: [GaplessCounterFilter!] + or: [ConditionalApprovalDataFilter!] """Negates the expression.""" - not: GaplessCounterFilter + not: ConditionalApprovalDataFilter } """ -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input GaplessCounterToManyIntakeFilter { +input CcbcUserToManyFormDataFilter { """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: IntakeFilter + every: FormDataFilter """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: IntakeFilter + some: FormDataFilter """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: IntakeFilter + none: FormDataFilter } """ -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter +input FormDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `lastEditedPage` field.""" + lastEditedPage: StringFilter + + """Filter by the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: StringFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `formSchemaId` field.""" + formSchemaId: IntFilter + + """Filter by the object’s `reasonForChange` field.""" + reasonForChange: StringFilter + + """Filter by the object’s `isEditable` field.""" + isEditable: BooleanFilter + + """Filter by the object’s `applicationFormDataByFormDataId` relation.""" + applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter + + """Some related `applicationFormDataByFormDataId` exist.""" + applicationFormDataByFormDataIdExist: Boolean """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. """ - none: ApplicationFilter + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter + + """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" + formDataStatusTypeByFormDataStatusTypeIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Filter by the object’s `formByFormSchemaId` relation.""" + formByFormSchemaId: FormFilter + + """A related `formByFormSchemaId` exists.""" + formByFormSchemaIdExists: Boolean + + """Checks for all expressions in this list.""" + and: [FormDataFilter!] + + """Checks for any expressions in this list.""" + or: [FormDataFilter!] + + """Negates the expression.""" + not: FormDataFilter } """ -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationStatusFilter { +input FormDataToManyApplicationFormDataFilter { """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationStatusFilter + every: ApplicationFormDataFilter """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationStatusFilter + some: ApplicationFormDataFilter """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationStatusFilter + none: ApplicationFormDataFilter } """ -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter +input ApplicationFormDataFilter { + """Filter by the object’s `formDataId` field.""" + formDataId: IntFilter - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter + """Filter by the object’s `formDataByFormDataId` relation.""" + formDataByFormDataId: FormDataFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """Checks for all expressions in this list.""" + and: [ApplicationFormDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationFormDataFilter!] + + """Negates the expression.""" + not: ApplicationFormDataFilter +} + +""" +A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter + + """Filter by the object’s `description` field.""" + description: StringFilter + + """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" + formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter + + """Some related `formDataByFormDataStatusTypeId` exist.""" + formDataByFormDataStatusTypeIdExist: Boolean + + """Checks for all expressions in this list.""" + and: [FormDataStatusTypeFilter!] + + """Checks for any expressions in this list.""" + or: [FormDataStatusTypeFilter!] + + """Negates the expression.""" + not: FormDataStatusTypeFilter } """ A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyFormDataFilter { +input FormDataStatusTypeToManyFormDataFilter { """ Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ @@ -26432,152 +27600,147 @@ input CcbcUserToManyFormDataFilter { } """ -A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAnalystFilter { - """ - Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnalystFilter +input FormFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnalystFilter + """Filter by the object’s `slug` field.""" + slug: StringFilter - """ - No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnalystFilter -} + """Filter by the object’s `jsonSchema` field.""" + jsonSchema: JSONFilter -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Filter by the object’s `formType` field.""" + formType: StringFilter - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter + """Filter by the object’s `formDataByFormSchemaId` relation.""" + formDataByFormSchemaId: FormToManyFormDataFilter + + """Some related `formDataByFormSchemaId` exist.""" + formDataByFormSchemaIdExist: Boolean + + """Filter by the object’s `formTypeByFormType` relation.""" + formTypeByFormType: FormTypeFilter + + """A related `formTypeByFormType` exists.""" + formTypeByFormTypeExists: Boolean + + """Checks for all expressions in this list.""" + and: [FormFilter!] + + """Checks for any expressions in this list.""" + or: [FormFilter!] + + """Negates the expression.""" + not: FormFilter } """ -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyRfiDataFilter { +input FormToManyFormDataFilter { """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RfiDataFilter + every: FormDataFilter """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RfiDataFilter + some: FormDataFilter """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RfiDataFilter + none: FormDataFilter } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter +input FormTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter + """Filter by the object’s `formsByFormType` relation.""" + formsByFormType: FormTypeToManyFormFilter + + """Some related `formsByFormType` exist.""" + formsByFormTypeExist: Boolean + + """Checks for all expressions in this list.""" + and: [FormTypeFilter!] + + """Checks for any expressions in this list.""" + or: [FormTypeFilter!] + + """Negates the expression.""" + not: FormTypeFilter } """ -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationPackageFilter { +input FormTypeToManyFormFilter { """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPackageFilter + every: FormFilter """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPackageFilter + some: FormFilter """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPackageFilter + none: FormFilter } """ -A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyRecordVersionFilter { +input CcbcUserToManyApplicationGisAssessmentHhFilter { """ - Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RecordVersionFilter + every: ApplicationGisAssessmentHhFilter """ - Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RecordVersionFilter + some: ApplicationGisAssessmentHhFilter """ - No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RecordVersionFilter + none: ApplicationGisAssessmentHhFilter } """ -A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ """ -input RecordVersionFilter { +input ApplicationGisAssessmentHhFilter { """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter - - """Filter by the object’s `oldRecordId` field.""" - oldRecordId: UUIDFilter - - """Filter by the object’s `op` field.""" - op: OperationFilter - - """Filter by the object’s `ts` field.""" - ts: DatetimeFilter + rowId: IntFilter - """Filter by the object’s `tableOid` field.""" - tableOid: BigFloatFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `tableSchema` field.""" - tableSchema: StringFilter + """Filter by the object’s `eligible` field.""" + eligible: FloatFilter - """Filter by the object’s `tableName` field.""" - tableName: StringFilter + """Filter by the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: FloatFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26585,11 +27748,20 @@ input RecordVersionFilter { """Filter by the object’s `createdAt` field.""" createdAt: DatetimeFilter - """Filter by the object’s `record` field.""" - record: JSONFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26597,339 +27769,244 @@ input RecordVersionFilter { """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: [RecordVersionFilter!] + and: [ApplicationGisAssessmentHhFilter!] """Checks for any expressions in this list.""" - or: [RecordVersionFilter!] + or: [ApplicationGisAssessmentHhFilter!] """Negates the expression.""" - not: RecordVersionFilter + not: ApplicationGisAssessmentHhFilter } """ -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ +A filter to be used against Float fields. All fields are combined with a logical ‘and.’ """ -input BigIntFilter { +input FloatFilter { """ Is null (if `true` is specified) or is not null (if `false` is specified). """ isNull: Boolean """Equal to the specified value.""" - equalTo: BigInt + equalTo: Float """Not equal to the specified value.""" - notEqualTo: BigInt + notEqualTo: Float """ Not equal to the specified value, treating null like an ordinary value. """ - distinctFrom: BigInt + distinctFrom: Float """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt + notDistinctFrom: Float """Included in the specified list.""" - in: [BigInt!] + in: [Float!] """Not included in the specified list.""" - notIn: [BigInt!] + notIn: [Float!] """Less than the specified value.""" - lessThan: BigInt + lessThan: Float """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt + lessThanOrEqualTo: Float """Greater than the specified value.""" - greaterThan: BigInt + greaterThan: Float """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt + greaterThanOrEqualTo: Float } """ -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt - -""" -A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -input OperationFilter { +input CcbcUserToManyApplicationGisDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: Operation + every: ApplicationGisDataFilter - """Not equal to the specified value.""" - notEqualTo: Operation + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: Operation + none: ApplicationGisDataFilter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Operation +""" +A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Included in the specified list.""" - in: [Operation!] + """Filter by the object’s `batchId` field.""" + batchId: IntFilter - """Not included in the specified list.""" - notIn: [Operation!] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Less than the specified value.""" - lessThan: Operation + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Operation + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than the specified value.""" - greaterThan: Operation + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Operation -} + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter -enum Operation { - INSERT - UPDATE - DELETE - TRUNCATE -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -""" -A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ -""" -input BigFloatFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Equal to the specified value.""" - equalTo: BigFloat + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Not equal to the specified value.""" - notEqualTo: BigFloat + """Filter by the object’s `gisDataByBatchId` relation.""" + gisDataByBatchId: GisDataFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigFloat + """A related `gisDataByBatchId` exists.""" + gisDataByBatchIdExists: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigFloat + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Included in the specified list.""" - in: [BigFloat!] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Not included in the specified list.""" - notIn: [BigFloat!] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Less than the specified value.""" - lessThan: BigFloat + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigFloat + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Greater than the specified value.""" - greaterThan: BigFloat + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigFloat -} + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter -""" -A floating point number that requires more precision than IEEE 754 binary 64 -""" -scalar BigFloat + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """Checks for all expressions in this list.""" + and: [ApplicationGisDataFilter!] - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """Checks for any expressions in this list.""" + or: [ApplicationGisDataFilter!] - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter + """Negates the expression.""" + not: ApplicationGisDataFilter } """ -A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyGisDataFilter { - """ - Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: GisDataFilter - - """ - Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: GisDataFilter - - """ - No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: GisDataFilter -} +input GisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter -""" -A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAnnouncementFilter { - """ - Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnnouncementFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnnouncementFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnnouncementFilter -} + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Filter by the object’s `applicationGisDataByBatchId` relation.""" + applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Some related `applicationGisDataByBatchId` exist.""" + applicationGisDataByBatchIdExist: Boolean -""" -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationGisAssessmentHhFilter { - """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisAssessmentHhFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisAssessmentHhFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisAssessmentHhFilter -} + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter -} + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean -""" -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab2Filter { - """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab2Filter + """Checks for all expressions in this list.""" + and: [GisDataFilter!] - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Checks for any expressions in this list.""" + or: [GisDataFilter!] - """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab2Filter + """Negates the expression.""" + not: GisDataFilter } """ -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManySowTab1Filter { +input GisDataToManyApplicationGisDataFilter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab1Filter + every: ApplicationGisDataFilter """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab1Filter + some: ApplicationGisDataFilter """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab1Filter + none: ApplicationGisDataFilter } """ @@ -26953,217 +28030,105 @@ input CcbcUserToManyProjectInformationDataFilter { } """ -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab7Filter { - """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab7Filter - - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter - - """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab7Filter -} - -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter - - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter - - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} - -""" -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter - - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter +input ProjectInformationDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ChangeRequestDataFilter -} + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter -""" -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationCommunityProgressReportDataFilter { - """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityProgressReportDataFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityProgressReportDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityProgressReportDataFilter -} + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter -} + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationClaimsExcelDataFilter { - """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsExcelDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsExcelDataFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsExcelDataFilter -} + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter -""" -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationMilestoneDataFilter { - """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneDataFilter -} + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean -""" -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationMilestoneExcelDataFilter { - """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneExcelDataFilter + """Checks for all expressions in this list.""" + and: [ProjectInformationDataFilter!] - """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Checks for any expressions in this list.""" + or: [ProjectInformationDataFilter!] - """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneExcelDataFilter + """Negates the expression.""" + not: ProjectInformationDataFilter } """ -A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcProjectFilter { +input CcbcUserToManyRfiDataFilter { """ - Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectFilter + every: RfiDataFilter """ - Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectFilter + some: RfiDataFilter """ - No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectFilter + none: RfiDataFilter } """ -A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectFilter { +input RfiDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter + """Filter by the object’s `rfiNumber` field.""" + rfiNumber: StringFilter + """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27183,6 +28148,20 @@ input CbcProjectFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" + applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter + + """Some related `applicationRfiDataByRfiDataId` exist.""" + applicationRfiDataByRfiDataIdExist: Boolean + + """ + Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. + """ + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter + + """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" + rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27202,147 +28181,159 @@ input CbcProjectFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectFilter!] + and: [RfiDataFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectFilter!] + or: [RfiDataFilter!] """Negates the expression.""" - not: CbcProjectFilter + not: RfiDataFilter } """ -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationInternalDescriptionFilter { +input RfiDataToManyApplicationRfiDataFilter { """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationInternalDescriptionFilter + every: ApplicationRfiDataFilter """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationInternalDescriptionFilter + some: ApplicationRfiDataFilter """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationInternalDescriptionFilter + none: ApplicationRfiDataFilter } """ -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter +input ApplicationRfiDataFilter { + """Filter by the object’s `rfiDataId` field.""" + rfiDataId: IntFilter - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationProjectTypeFilter + """Filter by the object’s `rfiDataByRfiDataId` relation.""" + rfiDataByRfiDataId: RfiDataFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """Checks for all expressions in this list.""" + and: [ApplicationRfiDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationRfiDataFilter!] + + """Negates the expression.""" + not: ApplicationRfiDataFilter } """ -A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyEmailRecordFilter { - """ - Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: EmailRecordFilter - - """ - Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: EmailRecordFilter +input RfiDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: EmailRecordFilter + """Filter by the object’s `description` field.""" + description: StringFilter + + """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" + rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter + + """Some related `rfiDataByRfiDataStatusTypeId` exist.""" + rfiDataByRfiDataStatusTypeIdExist: Boolean + + """Checks for all expressions in this list.""" + and: [RfiDataStatusTypeFilter!] + + """Checks for any expressions in this list.""" + or: [RfiDataStatusTypeFilter!] + + """Negates the expression.""" + not: RfiDataStatusTypeFilter } """ -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyNotificationFilter { +input RfiDataStatusTypeToManyRfiDataFilter { """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: NotificationFilter + every: RfiDataFilter """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: NotificationFilter + some: RfiDataFilter """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: NotificationFilter + none: RfiDataFilter } """ -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationPendingChangeRequestFilter { +input CcbcUserToManyIntakeFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPendingChangeRequestFilter + every: IntakeFilter """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPendingChangeRequestFilter + some: IntakeFilter """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPendingChangeRequestFilter + none: IntakeFilter } """ -A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcFilter { +input CcbcUserToManyApplicationAnnouncedFilter { """ - Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcFilter + every: ApplicationAnnouncedFilter """ - Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcFilter + some: ApplicationAnnouncedFilter """ - No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcFilter + none: ApplicationAnnouncedFilter } """ -A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ -input CbcFilter { +input ApplicationAnnouncedFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `announced` field.""" + announced: BooleanFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27362,31 +28353,11 @@ input CbcFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcDataByCbcId` relation.""" - cbcDataByCbcId: CbcToManyCbcDataFilter - - """Some related `cbcDataByCbcId` exist.""" - cbcDataByCbcIdExist: Boolean - - """Filter by the object’s `cbcDataByProjectNumber` relation.""" - cbcDataByProjectNumber: CbcToManyCbcDataFilter - - """Some related `cbcDataByProjectNumber` exist.""" - cbcDataByProjectNumberExist: Boolean - - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. - """ - cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter - - """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" - cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" - cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `cbcProjectCommunitiesByCbcId` exist.""" - cbcProjectCommunitiesByCbcIdExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27407,53 +28378,50 @@ input CbcFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcFilter!] + and: [ApplicationAnnouncedFilter!] """Checks for any expressions in this list.""" - or: [CbcFilter!] + or: [ApplicationAnnouncedFilter!] """Negates the expression.""" - not: CbcFilter + not: ApplicationAnnouncedFilter } """ -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcDataFilter { +input CcbcUserToManyApplicationClaimsDataFilter { """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataFilter + every: ApplicationClaimsDataFilter """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataFilter + some: ApplicationClaimsDataFilter """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataFilter + none: ApplicationClaimsDataFilter } """ -A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataFilter { +input ApplicationClaimsDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter - - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27473,23 +28441,14 @@ input CbcDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" - cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" - cbcDataChangeReasonsByCbcDataIdExist: Boolean - - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter - - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Filter by the object’s `cbcByProjectNumber` relation.""" - cbcByProjectNumber: CbcFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """A related `cbcByProjectNumber` exists.""" - cbcByProjectNumberExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27510,47 +28469,47 @@ input CbcDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcDataFilter!] + and: [ApplicationClaimsDataFilter!] """Checks for any expressions in this list.""" - or: [CbcDataFilter!] + or: [ApplicationClaimsDataFilter!] """Negates the expression.""" - not: CbcDataFilter + not: ApplicationClaimsDataFilter } """ -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataToManyCbcDataChangeReasonFilter { +input CcbcUserToManyApplicationClaimsExcelDataFilter { """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataChangeReasonFilter + every: ApplicationClaimsExcelDataFilter """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataChangeReasonFilter + some: ApplicationClaimsExcelDataFilter """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataChangeReasonFilter + none: ApplicationClaimsExcelDataFilter } """ -A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataChangeReasonFilter { +input ApplicationClaimsExcelDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcDataId` field.""" - cbcDataId: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27570,8 +28529,11 @@ input CbcDataChangeReasonFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcDataByCbcDataId` relation.""" - cbcDataByCbcDataId: CbcDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27592,50 +28554,47 @@ input CbcDataChangeReasonFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcDataChangeReasonFilter!] + and: [ApplicationClaimsExcelDataFilter!] """Checks for any expressions in this list.""" - or: [CbcDataChangeReasonFilter!] + or: [ApplicationClaimsExcelDataFilter!] """Negates the expression.""" - not: CbcDataChangeReasonFilter + not: ApplicationClaimsExcelDataFilter } """ -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcApplicationPendingChangeRequestFilter { +input CcbcUserToManyApplicationCommunityProgressReportDataFilter { """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcApplicationPendingChangeRequestFilter + every: ApplicationCommunityProgressReportDataFilter """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcApplicationPendingChangeRequestFilter + some: ApplicationCommunityProgressReportDataFilter """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcApplicationPendingChangeRequestFilter + none: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input CbcApplicationPendingChangeRequestFilter { +input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter - - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `comment` field.""" - comment: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27655,11 +28614,17 @@ input CbcApplicationPendingChangeRequestFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27680,47 +28645,47 @@ input CbcApplicationPendingChangeRequestFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcApplicationPendingChangeRequestFilter!] + and: [ApplicationCommunityProgressReportDataFilter!] """Checks for any expressions in this list.""" - or: [CbcApplicationPendingChangeRequestFilter!] + or: [ApplicationCommunityProgressReportDataFilter!] """Negates the expression.""" - not: CbcApplicationPendingChangeRequestFilter + not: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcProjectCommunityFilter { +input CcbcUserToManyApplicationCommunityReportExcelDataFilter { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectCommunityFilter + every: ApplicationCommunityReportExcelDataFilter """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectCommunityFilter + some: ApplicationCommunityReportExcelDataFilter """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectCommunityFilter + none: ApplicationCommunityReportExcelDataFilter } """ -A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectCommunityFilter { +input ApplicationCommunityReportExcelDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `communitiesSourceDataId` field.""" - communitiesSourceDataId: IntFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27740,19 +28705,11 @@ input CbcProjectCommunityFilter { """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 `communitiesSourceDataByCommunitiesSourceDataId` relation. - """ - communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" - communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27773,45 +28730,47 @@ input CbcProjectCommunityFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectCommunityFilter!] + and: [ApplicationCommunityReportExcelDataFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectCommunityFilter!] + or: [ApplicationCommunityReportExcelDataFilter!] """Negates the expression.""" - not: CbcProjectCommunityFilter + not: ApplicationCommunityReportExcelDataFilter } """ -A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ """ -input CommunitiesSourceDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `geographicNameId` field.""" - geographicNameId: IntFilter - - """Filter by the object’s `bcGeographicName` field.""" - bcGeographicName: StringFilter - - """Filter by the object’s `geographicType` field.""" - geographicType: StringFilter +input CcbcUserToManyApplicationInternalDescriptionFilter { + """ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationInternalDescriptionFilter - """Filter by the object’s `regionalDistrict` field.""" - regionalDistrict: StringFilter + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter - """Filter by the object’s `economicRegion` field.""" - economicRegion: StringFilter + """ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationInternalDescriptionFilter +} - """Filter by the object’s `latitude` field.""" - latitude: FloatFilter +""" +A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `longitude` field.""" - longitude: FloatFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `mapLink` field.""" - mapLink: StringFilter + """Filter by the object’s `description` field.""" + description: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27831,13 +28790,11 @@ input CommunitiesSourceDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """ - Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. - """ - cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" - cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27858,164 +28815,223 @@ input CommunitiesSourceDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CommunitiesSourceDataFilter!] + and: [ApplicationInternalDescriptionFilter!] """Checks for any expressions in this list.""" - or: [CommunitiesSourceDataFilter!] + or: [ApplicationInternalDescriptionFilter!] """Negates the expression.""" - not: CommunitiesSourceDataFilter + not: ApplicationInternalDescriptionFilter } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ """ -input CommunitiesSourceDataToManyCbcProjectCommunityFilter { +input CcbcUserToManyApplicationMilestoneDataFilter { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectCommunityFilter + every: ApplicationMilestoneDataFilter """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectCommunityFilter + some: ApplicationMilestoneDataFilter """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectCommunityFilter + none: ApplicationMilestoneDataFilter } """ -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationMilestoneData` 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 +input ApplicationMilestoneDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter -} + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter + """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 `historyOperation` field.""" + historyOperation: StringFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneDataFilter!] + + """Negates the expression.""" + not: ApplicationMilestoneDataFilter } """ -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcDataChangeReasonFilter { +input CcbcUserToManyApplicationMilestoneExcelDataFilter { """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataChangeReasonFilter + every: ApplicationMilestoneExcelDataFilter """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataChangeReasonFilter + some: ApplicationMilestoneExcelDataFilter """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataChangeReasonFilter + none: ApplicationMilestoneExcelDataFilter } """ -A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCommunitiesSourceDataFilter { - """ - Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CommunitiesSourceDataFilter +input ApplicationMilestoneExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CommunitiesSourceDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CommunitiesSourceDataFilter -} + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter -""" -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneExcelDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneExcelDataFilter!] + + """Negates the expression.""" + not: ApplicationMilestoneExcelDataFilter } """ -A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyReportingGcpeFilter { +input CcbcUserToManyApplicationSowDataFilter { """ - Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ReportingGcpeFilter + every: ApplicationSowDataFilter """ - Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ReportingGcpeFilter + some: ApplicationSowDataFilter """ - No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ReportingGcpeFilter + none: ApplicationSowDataFilter } """ -A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ """ -input ReportingGcpeFilter { +input ApplicationSowDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `reportData` field.""" - reportData: JSONFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28035,6 +29051,42 @@ input ReportingGcpeFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter + + """Filter by the object’s `isAmendment` field.""" + isAmendment: BooleanFilter + + """Filter by the object’s `sowTab1SBySowId` relation.""" + sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter + + """Some related `sowTab1SBySowId` exist.""" + sowTab1SBySowIdExist: Boolean + + """Filter by the object’s `sowTab2SBySowId` relation.""" + sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter + + """Some related `sowTab2SBySowId` exist.""" + sowTab2SBySowIdExist: Boolean + + """Filter by the object’s `sowTab7SBySowId` relation.""" + sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter + + """Some related `sowTab7SBySowId` exist.""" + sowTab7SBySowIdExist: Boolean + + """Filter by the object’s `sowTab8SBySowId` relation.""" + sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter + + """Some related `sowTab8SBySowId` exist.""" + sowTab8SBySowIdExist: Boolean + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28054,4576 +29106,3314 @@ input ReportingGcpeFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ReportingGcpeFilter!] + and: [ApplicationSowDataFilter!] """Checks for any expressions in this list.""" - or: [ReportingGcpeFilter!] + or: [ApplicationSowDataFilter!] """Negates the expression.""" - not: ReportingGcpeFilter -} - -""" -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncedFilter { - """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncedFilter - - """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncedFilter - - """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncedFilter + not: ApplicationSowDataFilter } """ -A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyKeycloakJwtFilter { +input ApplicationSowDataToManySowTab1Filter { """ - Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: KeycloakJwtFilter + every: SowTab1Filter """ - Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: KeycloakJwtFilter + some: SowTab1Filter """ - No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: KeycloakJwtFilter + none: SowTab1Filter } """ -A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ """ -input KeycloakJwtFilter { - """Filter by the object’s `jti` field.""" - jti: UUIDFilter - - """Filter by the object’s `exp` field.""" - exp: IntFilter - - """Filter by the object’s `nbf` field.""" - nbf: IntFilter - - """Filter by the object’s `iat` field.""" - iat: IntFilter - - """Filter by the object’s `iss` field.""" - iss: StringFilter - - """Filter by the object’s `aud` field.""" - aud: StringFilter - - """Filter by the object’s `sub` field.""" - sub: StringFilter - - """Filter by the object’s `typ` field.""" - typ: StringFilter - - """Filter by the object’s `azp` field.""" - azp: StringFilter +input SowTab1Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `authTime` field.""" - authTime: IntFilter + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Filter by the object’s `sessionState` field.""" - sessionState: UUIDFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `acr` field.""" - acr: StringFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `emailVerified` field.""" - emailVerified: BooleanFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `name` field.""" - name: StringFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `preferredUsername` field.""" - preferredUsername: StringFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `email` field.""" - email: StringFilter + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Filter by the object’s `brokerSessionId` field.""" - brokerSessionId: StringFilter + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Filter by the object’s `priorityGroup` field.""" - priorityGroup: StringFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `identityProvider` field.""" - identityProvider: StringFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `userGroups` field.""" - userGroups: StringListFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `authRole` field.""" - authRole: StringFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `ccbcUserBySub` relation.""" - ccbcUserBySub: CcbcUserFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """A related `ccbcUserBySub` exists.""" - ccbcUserBySubExists: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [KeycloakJwtFilter!] + and: [SowTab1Filter!] """Checks for any expressions in this list.""" - or: [KeycloakJwtFilter!] + or: [SowTab1Filter!] """Negates the expression.""" - not: KeycloakJwtFilter + not: SowTab1Filter } """ -A filter to be used against String List fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ """ -input StringListFilter { +input ApplicationSowDataToManySowTab2Filter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: [String] + every: SowTab2Filter - """Not equal to the specified value.""" - notEqualTo: [String] + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter """ - Not equal to the specified value, treating null like an ordinary value. + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: [String] + none: SowTab2Filter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [String] +""" +A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab2Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Less than the specified value.""" - lessThan: [String] + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [String] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Greater than the specified value.""" - greaterThan: [String] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [String] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Contains the specified list of values.""" - contains: [String] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Contained by the specified list of values.""" - containedBy: [String] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Overlaps the specified list of values.""" - overlaps: [String] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Any array item is equal to the specified value.""" - anyEqualTo: String + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Any array item is not equal to the specified value.""" - anyNotEqualTo: String + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Any array item is less than the specified value.""" - anyLessThan: String + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: String + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Any array item is greater than the specified value.""" - anyGreaterThan: String + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: String -} + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter -"""A connection to a list of `Intake` values.""" -type IntakesConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A list of edges which contains the `Intake` and cursor to aid in pagination. - """ - edges: [IntakesEdge!]! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The count of *all* `Intake` you could get from the connection.""" - totalCount: Int! + """Checks for all expressions in this list.""" + and: [SowTab2Filter!] + + """Checks for any expressions in this list.""" + or: [SowTab2Filter!] + + """Negates the expression.""" + not: SowTab2Filter } """ -Table containing intake numbers and their respective open and closing dates +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ """ -type Intake implements Node { +input ApplicationSowDataToManySowTab7Filter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! - - """Unique ID for each intake number""" - rowId: Int! - - """Open date and time for an intake number""" - openTimestamp: Datetime! - - """Close date and time for an intake number""" - closeTimestamp: Datetime! + every: SowTab7Filter - """Unique intake number for a set of CCBC IDs""" - ccbcIntakeNumber: Int! + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter """ - The name of the sequence used to generate CCBC ids. It is added via a trigger + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationNumberSeqName: String + none: SowTab7Filter +} - """created by user id""" - createdBy: Int +""" +A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab7Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """A description of the intake""" - description: String + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """A column to denote whether the intake is visible to the public""" - hidden: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """A column to denote whether the intake is a rolling intake""" - rollingIntake: Boolean + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 + """Checks for all expressions in this list.""" + and: [SowTab7Filter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationsConnection! + """Checks for any expressions in this list.""" + or: [SowTab7Filter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: SowTab7Filter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """ - 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 `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab8Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [SowTab8Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [SowTab8Filter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! + """Negates the expression.""" + not: SowTab8Filter } -"""Table to hold counter for creating gapless sequences""" -type GaplessCounter implements Node { +""" +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! - - """Primary key for the gapless counter""" - rowId: Int! - - """Primary key for the gapless counter""" - counter: Int! + every: CbcApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcApplicationPendingChangeRequestFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CbcApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `comment` field.""" + comment: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [CbcApplicationPendingChangeRequestFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [CbcApplicationPendingChangeRequestFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Negates the expression.""" + not: CbcApplicationPendingChangeRequestFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! +""" +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 - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: 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 `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! -} + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter -"""Methods to use when ordering `Intake`.""" -enum IntakesOrderBy { - NATURAL - ID_ASC - ID_DESC - OPEN_TIMESTAMP_ASC - OPEN_TIMESTAMP_DESC - CLOSE_TIMESTAMP_ASC - CLOSE_TIMESTAMP_DESC - CCBC_INTAKE_NUMBER_ASC - CCBC_INTAKE_NUMBER_DESC - APPLICATION_NUMBER_SEQ_NAME_ASC - APPLICATION_NUMBER_SEQ_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - COUNTER_ID_ASC - COUNTER_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - HIDDEN_ASC - HIDDEN_DESC - HIDDEN_CODE_ASC - HIDDEN_CODE_DESC - ROLLING_INTAKE_ASC - ROLLING_INTAKE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. + """ + cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter -""" -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 + """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" + cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean - """Checks for equality with the object’s `openTimestamp` field.""" - openTimestamp: Datetime + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter - """Checks for equality with the object’s `closeTimestamp` field.""" - closeTimestamp: Datetime + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean - """Checks for equality with the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: Int + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter - """ - Checks for equality with the object’s `applicationNumberSeqName` field. - """ - applicationNumberSeqName: String + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" + cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Some related `cbcProjectCommunitiesByCbcId` exist.""" + cbcProjectCommunitiesByCbcIdExist: Boolean - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Checks for equality with the object’s `counterId` field.""" - counterId: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Checks for equality with the object’s `description` field.""" - description: String + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Checks for equality with the object’s `hidden` field.""" - hidden: Boolean + """Checks for all expressions in this list.""" + and: [CbcFilter!] - """Checks for equality with the object’s `hiddenCode` field.""" - hiddenCode: UUID + """Checks for any expressions in this list.""" + or: [CbcFilter!] - """Checks for equality with the object’s `rollingIntake` field.""" - rollingIntake: Boolean + """Negates the expression.""" + not: CbcFilter } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +""" +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcApplicationPendingChangeRequestFilter { """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! + every: CbcApplicationPendingChangeRequestFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcApplicationPendingChangeRequestFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcApplicationPendingChangeRequestFilter } -"""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 +""" +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 - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +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 - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" + cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" + cbcDataChangeReasonsByCbcDataIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """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 `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataToManyCbcDataChangeReasonFilter { """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + every: CbcDataChangeReasonFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataChangeReasonFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataChangeReasonFilter } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataChangeReasonFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `cbcDataId` field.""" + cbcDataId: IntFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """Filter by the object’s `cbcDataByCbcDataId` relation.""" + cbcDataByCbcDataId: CbcDataFilter -"""A connection to a list of `Application` values.""" -type ApplicationsConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A list of edges which contains the `Application` and cursor to aid in pagination. - """ - edges: [ApplicationsEdge!]! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! + """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: [CbcDataChangeReasonFilter!] + + """Checks for any expressions in this list.""" + or: [CbcDataChangeReasonFilter!] + + """Negates the expression.""" + not: CbcDataChangeReasonFilter } """ -Table containing the data associated with the CCBC respondents application +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -type Application implements Node { +input CbcToManyCbcProjectCommunityFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + every: CbcProjectCommunityFilter - """Primary key ID for the application""" - rowId: Int! + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """Reference number assigned to the application""" - ccbcNumber: String + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter +} - """The owner of the application, identified by its JWT sub""" - owner: String! +""" +A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectCommunityFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The intake associated with the application, set when it is submitted""" - intakeId: Int + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """created by user id""" - createdBy: Int + """Filter by the object’s `communitiesSourceDataId` field.""" + communitiesSourceDataId: IntFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Program type of the project""" - program: String! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads a single `Intake` that is related to this `Application`.""" - intakeByIntakeId: Intake + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByCreatedBy: CcbcUser + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. + """ + communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByArchivedBy: CcbcUser + """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" + communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Checks for all expressions in this list.""" + and: [CbcProjectCommunityFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """Checks for any expressions in this list.""" + or: [CbcProjectCommunityFilter!] - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: CbcProjectCommunityFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +""" +input CommunitiesSourceDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `geographicNameId` field.""" + geographicNameId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `bcGeographicName` field.""" + bcGeographicName: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `geographicType` field.""" + geographicType: StringFilter - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `regionalDistrict` field.""" + regionalDistrict: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Filter by the object’s `economicRegion` field.""" + economicRegion: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Filter by the object’s `latitude` field.""" + latitude: FloatFilter - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `longitude` field.""" + longitude: FloatFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `mapLink` field.""" + mapLink: 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 `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. """ - applicationAnalystLeadsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" + cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnalystLeadCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [CommunitiesSourceDataFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [CommunitiesSourceDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: CommunitiesSourceDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CommunitiesSourceDataToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition +""" +A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectFilter { + """ + Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """ + Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectFilter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """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 `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [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: AssessmentDataCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `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 `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CbcProjectFilter!] + + """Checks for any expressions in this list.""" + or: [CbcProjectFilter!] + + """Negates the expression.""" + not: CbcProjectFilter +} +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyChangeRequestDataFilter { """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - conditionalApprovalDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: ChangeRequestDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ChangeRequestDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ConditionalApprovalDataCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ChangeRequestDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Checks for any expressions in this list.""" + or: [ChangeRequestDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """Negates the expression.""" + not: ChangeRequestDataFilter +} +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyNotificationFilter { """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: NotificationFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input NotificationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `notificationType` field.""" + notificationType: StringFilter - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisAssessmentHhCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + """Filter by the object’s `emailRecordId` field.""" + emailRecordId: IntFilter - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `emailRecordByEmailRecordId` relation.""" + emailRecordByEmailRecordId: EmailRecordFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `emailRecordByEmailRecordId` exists.""" + emailRecordByEmailRecordIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectInformationDataCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [NotificationFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [NotificationFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: NotificationFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `toEmail` field.""" + toEmail: StringFilter - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccEmail` field.""" + ccEmail: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ChangeRequestDataCondition + """Filter by the object’s `subject` field.""" + subject: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + """Filter by the object’s `body` field.""" + body: StringFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `messageId` field.""" + messageId: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """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 `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [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: ApplicationCommunityProgressReportDataCondition + """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: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `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 `notificationsByEmailRecordId` relation.""" + notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `notificationsByEmailRecordId` exist.""" + notificationsByEmailRecordIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [EmailRecordFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [EmailRecordFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: EmailRecordFilter +} - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPackageFilter { """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationClaimsExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: ApplicationPackageFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPackageFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `package` field.""" + package: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneDataCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationPackageFilter!] - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [ApplicationPackageFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneExcelDataCondition + """Negates the expression.""" + not: ApplicationPackageFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationInternalDescriptionsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + some: ApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `comment` field.""" + comment: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationInternalDescriptionCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationProjectTypeCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationPendingChangeRequestFilter!] - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [ApplicationPendingChangeRequestFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """Negates the expression.""" + not: ApplicationPendingChangeRequestFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + some: ApplicationProjectTypeFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationProjectTypeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `projectType` field.""" + projectType: StringFilter - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncedCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationProjectTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationProjectTypeFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Negates the expression.""" + not: ApplicationProjectTypeFilter +} +""" +A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCcbcUserFilter { """ - computed column to return space separated list of amendment numbers for a change request + Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - 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 - announced: Boolean + every: CcbcUserFilter - """Computed column that returns list of announcements for the application""" - announcements( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CcbcUserFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): AnnouncementsConnection! +""" +A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData + """Filter by the object’s `file` field.""" + file: UUIDFilter - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData + """Filter by the object’s `description` field.""" + description: StringFilter - """Computed column to return external status of an application""" - externalStatus: String + """Filter by the object’s `fileName` field.""" + fileName: StringFilter - """Computed column to display form_data""" - formData: FormData + """Filter by the object’s `fileType` field.""" + fileType: StringFilter - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh + """Filter by the object’s `fileSize` field.""" + fileSize: StringFilter - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """Filter by the object’s `applicationStatusId` field.""" + applicationStatusId: IntFilter - """Computed column that returns list of audit records for application""" - history( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Computed column to display organization name from json data""" - organizationName: String + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter """ - Computed column to return the application announced status for an application + Filter by the object’s `applicationStatusByApplicationStatusId` relation. """ - package: Int - - """Computed column to return project information data""" - projectInformation: ProjectInformationData + applicationStatusByApplicationStatusId: ApplicationStatusFilter - """Computed column to display the project name""" - projectName: String + """A related `applicationStatusByApplicationStatusId` exists.""" + applicationStatusByApplicationStatusIdExists: Boolean - """Computed column to return last RFI for an application""" - rfi: RfiData + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Computed column to return status of an application""" - status: String + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Computed column to return the order of the status""" - statusOrder: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Computed column to return the status order with the status name appended for sorting and filtering - """ - statusSortFilter: String - zone: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Computed column to get single lowest zone from json data, used for sorting - """ - zones: [Int] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [AttachmentFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [AttachmentFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: AttachmentFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusTypeCondition + """Filter by the object’s `status` field.""" + status: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusTypeFilter - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `changeReason` field.""" + changeReason: 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 `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" + attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + """Some related `attachmentsByApplicationStatusId` exist.""" + attachmentsByApplicationStatusIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationStatusTypeByStatus` relation.""" + applicationStatusTypeByStatus: ApplicationStatusTypeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationStatusTypeByStatus` exists.""" + applicationStatusTypeByStatusExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationStatusFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationStatusFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationStatusFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `description` field.""" + description: 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 `visibleByApplicant` field.""" + visibleByApplicant: BooleanFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: BooleanFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationStatusesByStatus` relation.""" + applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Some related `applicationStatusesByStatus` exist.""" + applicationStatusesByStatusExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + """Checks for all expressions in this list.""" + and: [ApplicationStatusTypeFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for any expressions in this list.""" + or: [ApplicationStatusTypeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Negates the expression.""" + not: ApplicationStatusTypeFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyGisDataFilter { + """ + Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: GisDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: GisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + """ + No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: GisDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnalystFilter { + """ + Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnalystFilter - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnalystFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnalystFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `active` field.""" + active: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `email` field.""" + email: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" + applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationAnalystLeadsByAnalystId` exist.""" + applicationAnalystLeadsByAnalystIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + """Checks for all expressions in this list.""" + and: [AnalystFilter!] - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for any expressions in this list.""" + or: [AnalystFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Negates the expression.""" + not: AnalystFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! + """Filter by the object’s `analystId` field.""" + analystId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `analystByAnalystId` relation.""" + analystByAnalystId: AnalystFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `analystByAnalystId` exists.""" + analystByAnalystIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationAnalystLeadFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationAnalystLeadFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationAnalystLeadFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """ - 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 `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +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 - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! +""" +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 - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataChangeReasonFilter { + """ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataChangeReasonFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataChangeReasonFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataChangeReasonFilter +} - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentTypeCondition + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentTypeFilter - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCommunitiesSourceDataFilter { + """ + Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CommunitiesSourceDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CommunitiesSourceDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CommunitiesSourceDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyEmailRecordFilter { + """ + Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: EmailRecordFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: EmailRecordFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: EmailRecordFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! +""" +A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyRecordVersionFilter { + """ + Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RecordVersionFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RecordVersionFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RecordVersionFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input RecordVersionFilter { + """Filter by the object’s `rowId` field.""" + rowId: BigIntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `oldRecordId` field.""" + oldRecordId: UUIDFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `op` field.""" + op: OperationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ts` field.""" + ts: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `tableOid` field.""" + tableOid: BigFloatFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `tableSchema` field.""" + tableSchema: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `tableName` field.""" + tableName: 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 `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `record` field.""" + record: JSONFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [RecordVersionFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [RecordVersionFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: RecordVersionFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ +""" +input BigIntFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Equal to the specified value.""" + equalTo: BigInt - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not equal to the specified value.""" + notEqualTo: BigInt - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigInt - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigInt - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Included in the specified list.""" + in: [BigInt!] - """Only read the last `n` values of the set.""" - last: Int + """Not included in the specified list.""" + notIn: [BigInt!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than the specified value.""" + lessThan: BigInt - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigInt - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than the specified value.""" + greaterThan: BigInt - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigInt +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A signed eight-byte integer. The upper big integer values are greater than the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +""" +scalar BigInt - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +""" +input OperationFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value.""" + equalTo: Operation - """Only read the last `n` values of the set.""" - last: Int + """Not equal to the specified value.""" + notEqualTo: Operation - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Operation - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Operation - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Included in the specified list.""" + in: [Operation!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not included in the specified list.""" + notIn: [Operation!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than the specified value.""" + lessThan: Operation - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Operation - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than the specified value.""" + greaterThan: Operation - """Only read the last `n` values of the set.""" - last: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Operation +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +enum Operation { + INSERT + UPDATE + DELETE + TRUNCATE +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ +""" +input BigFloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Equal to the specified value.""" + equalTo: BigFloat - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not equal to the specified value.""" + notEqualTo: BigFloat - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigFloat - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigFloat - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Included in the specified list.""" + in: [BigFloat!] - """Only read the last `n` values of the set.""" - last: Int + """Not included in the specified list.""" + notIn: [BigFloat!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than the specified value.""" + lessThan: BigFloat - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigFloat - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than the specified value.""" + greaterThan: BigFloat - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigFloat +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A floating point number that requires more precision than IEEE 754 binary 64 +""" +scalar BigFloat - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyReportingGcpeFilter { + """ + Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ReportingGcpeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ReportingGcpeFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ReportingGcpeFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ +""" +input ReportingGcpeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `reportData` field.""" + reportData: JSONFilter - """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 - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `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 `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ReportingGcpeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ReportingGcpeFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ReportingGcpeFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab1Filter { + """ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab1Filter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab1Filter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab1Filter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab2Filter { + """ + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab2Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """ - 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 `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyKeycloakJwtFilter { + """ + Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: KeycloakJwtFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: KeycloakJwtFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: KeycloakJwtFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input KeycloakJwtFilter { + """Filter by the object’s `jti` field.""" + jti: UUIDFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `exp` field.""" + exp: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `nbf` field.""" + nbf: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `iat` field.""" + iat: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `iss` field.""" + iss: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `aud` field.""" + aud: StringFilter - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `sub` field.""" + sub: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `typ` field.""" + typ: 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 `azp` field.""" + azp: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `authTime` field.""" + authTime: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sessionState` field.""" + sessionState: UUIDFilter - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `acr` field.""" + acr: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnnouncementCondition + """Filter by the object’s `emailVerified` field.""" + emailVerified: BooleanFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! + """Filter by the object’s `name` field.""" + name: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `preferredUsername` field.""" + preferredUsername: 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 `email` field.""" + email: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `brokerSessionId` field.""" + brokerSessionId: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `priorityGroup` field.""" + priorityGroup: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `identityProvider` field.""" + identityProvider: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `userGroups` field.""" + userGroups: StringListFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `authRole` field.""" + authRole: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserBySub` relation.""" + ccbcUserBySub: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserBySub` exists.""" + ccbcUserBySubExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [KeycloakJwtFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [KeycloakJwtFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: KeycloakJwtFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against String List fields. All fields are combined with a logical ‘and.’ +""" +input StringListFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + """Equal to the specified value.""" + equalTo: [String] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not equal to the specified value.""" + notEqualTo: [String] - """Only read the last `n` values of the set.""" - last: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: [String] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [String] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than the specified value.""" + lessThan: [String] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [String] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than the specified value.""" + greaterThan: [String] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [String] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + """Contains the specified list of values.""" + contains: [String] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Contained by the specified list of values.""" + containedBy: [String] - """Only read the last `n` values of the set.""" - last: Int + """Overlaps the specified list of values.""" + overlaps: [String] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Any array item is equal to the specified value.""" + anyEqualTo: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Any array item is not equal to the specified value.""" + anyNotEqualTo: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Any array item is less than the specified value.""" + anyLessThan: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Any array item is greater than the specified value.""" + anyGreaterThan: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: String +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyConditionalApprovalDataFilter { + """ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ConditionalApprovalDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ConditionalApprovalDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ConditionalApprovalDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisAssessmentHhFilter { + """ + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisAssessmentHhFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisAssessmentHhFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisAssessmentHhFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyProjectInformationDataFilter { + """ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ProjectInformationDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ProjectInformationDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ProjectInformationDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncedFilter { + """ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncedFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncedFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncedFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsDataFilter { + """ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): 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 - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): 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 - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter +} - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityProgressReportDataFilter { + """ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityProgressReportDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition + """ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityProgressReportDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + """ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityProgressReportDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationInternalDescriptionFilter { + """ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationInternalDescriptionFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationInternalDescriptionFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneDataFilter { + """ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneExcelDataFilter { + """ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneExcelDataFilter - """ - 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 `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `counter` field.""" + counter: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `intakesByCounterId` relation.""" + intakesByCounterId: GaplessCounterToManyIntakeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `intakesByCounterId` exist.""" + intakesByCounterIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [GaplessCounterFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [GaplessCounterFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Negates the expression.""" + not: GaplessCounterFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterToManyIntakeFilter { + """ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: IntakeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { + """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 - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32642,98 +32432,121 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! } -"""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! +"""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 } -"""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! +""" +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 - """Unique ID for the application_status""" - rowId: Int! + """Checks for equality with the object’s `sessionSub` field.""" + sessionSub: String - """ID of the application this status belongs to""" - applicationId: Int + """Checks for equality with the object’s `givenName` field.""" + givenName: String - """The status of the application""" - status: String + """Checks for equality with the object’s `familyName` field.""" + familyName: String - """created by user id""" + """Checks for equality with the object’s `emailAddress` field.""" + emailAddress: String + + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int - """created at timestamp""" - createdAt: Datetime! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Change reason for analyst status change""" - changeReason: String + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """archived by user id""" + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" archivedBy: Int - """archived at timestamp""" + """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - """updated by user id""" - updatedBy: Int + """Checks for equality with the object’s `externalAnalyst` field.""" + externalAnalyst: Boolean +} - """updated at timestamp""" - updatedAt: Datetime! +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `Application` that is related to this `ApplicationStatus`. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - applicationByApplicationId: Application + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. - """ - applicationStatusTypeByStatus: ApplicationStatusType + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByCreatedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByArchivedBy: CcbcUser +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByUpdatedBy: CcbcUser + """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 `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32752,22 +32565,48 @@ type ApplicationStatus 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( +"""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 @@ -32786,22 +32625,136 @@ type ApplicationStatus implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( +"""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 + PROGRAM_ASC + PROGRAM_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 + + """Checks for equality with the object’s `program` field.""" + program: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { + """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: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type 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 `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32820,22 +32773,50 @@ 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 - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32854,22 +32835,50 @@ 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 - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32888,51 +32897,105 @@ 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 + ): ApplicationsConnection! } -""" -Table containing the different statuses that can be assigned to an application -""" -type ApplicationStatusType implements Node { +"""A connection to a list of `AssessmentData` values.""" +type AssessmentDataConnection { + """A list of `AssessmentData` objects.""" + nodes: [AssessmentData]! + + """ + A list of edges which contains the `AssessmentData` and cursor to aid in pagination. + """ + edges: [AssessmentDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentData` you could get from the connection.""" + totalCount: Int! +} + +type AssessmentData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + rowId: Int! + applicationId: Int! - """Name of and primary key of the status of an application""" - name: String! + """ + The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) + """ + jsonData: JSON! + assessmentDataType: String - """Description of the status type""" - description: String + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `Application` that is related to this `AssessmentData`.""" + applicationByApplicationId: Application """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. + Reads a single `AssessmentType` that is related to this `AssessmentData`. """ - visibleByApplicant: Boolean + assessmentTypeByAssessmentDataType: AssessmentType - """The logical order in which the status should be displayed.""" - statusOrder: Int! + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByArchivedBy: CcbcUser +} +""" +Table containing the different assessment types that can be assigned to an assessment +""" +type AssessmentType implements Node { """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - visibleByAnalyst: Boolean + id: ID! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """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 @@ -32951,22 +33014,22 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusStatusAndApplicationId( + applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -32997,10 +33060,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndCreatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33031,10 +33094,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndArchivedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33065,10 +33128,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndUpdatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33099,147 +33162,20 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `ApplicationStatus`.""" -enum ApplicationStatusesOrderBy { +"""Methods to use when ordering `AssessmentData`.""" +enum AssessmentDataOrderBy { 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 - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -"""Methods to use when ordering `Application`.""" -enum ApplicationsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBER_ASC - CCBC_NUMBER_DESC - OWNER_ASC - OWNER_DESC - INTAKE_ID_ASC - INTAKE_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 @@ -33252,46 +33188,26 @@ enum ApplicationsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - PROGRAM_ASC - PROGRAM_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.’ +A condition to be used against `AssessmentData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationCondition { +input AssessmentDataCondition { """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 `applicationId` field.""" + applicationId: Int - """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 `assessmentDataType` field.""" + assessmentDataType: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33310,22 +33226,83 @@ input ApplicationCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime +} - """Checks for equality with the object’s `program` field.""" - program: String +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `AssessmentData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { +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 `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { """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 `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33334,18 +33311,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 `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 `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33364,32 +33339,32 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { """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 `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33398,18 +33373,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 `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 `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33428,32 +33401,32 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { """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 `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33462,18 +33435,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 `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 `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33492,74 +33463,66 @@ 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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `Attachment` values.""" -type AttachmentsConnection { - """A list of `Attachment` objects.""" - nodes: [Attachment]! +"""A `AssessmentData` edge in the connection.""" +type AssessmentDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `AssessmentData` at the end of the edge.""" + node: AssessmentData +} + +"""A connection to a list of `ConditionalApprovalData` values.""" +type ConditionalApprovalDataConnection { + """A list of `ConditionalApprovalData` objects.""" + nodes: [ConditionalApprovalData]! """ - A list of edges which contains the `Attachment` and cursor to aid in pagination. + A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. """ - edges: [AttachmentsEdge!]! + edges: [ConditionalApprovalDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Attachment` you could get from the connection.""" + """ + The count of *all* `ConditionalApprovalData` you could get from the connection. + """ totalCount: Int! } -"""Table containing information about uploaded attachments""" -type Attachment implements Node { +"""Table to store conditional approval data""" +type ConditionalApprovalData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the attachment""" + """Unique id for the row""" rowId: Int! - """ - Universally Unique ID for the attachment, created by the fastapi storage micro-service - """ - file: UUID - - """Description of the attachment""" - description: String - - """Original uploaded file name""" - fileName: String - - """Original uploaded file type""" - fileType: String - - """Original uploaded file size""" - fileSize: String - - """ - The id of the project (ccbc_public.application.id) that the attachment was uploaded to - """ - applicationId: Int! + """The foreign key of an application""" + applicationId: Int """ - The id of the application_status (ccbc_public.application_status.id) that the attachment references + 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) """ - applicationStatusId: Int + jsonData: JSON! """created by user id""" createdBy: Int @@ -33579,52 +33542,45 @@ type Attachment implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Attachment`.""" + """ + Reads a single `Application` that is related to this `ConditionalApprovalData`. + """ applicationByApplicationId: Application """ - Reads a single `ApplicationStatus` that is related to this `Attachment`. + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. """ - applicationStatusByApplicationStatusId: ApplicationStatus - - """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `Attachment` edge in the connection.""" -type AttachmentsEdge { +"""A `ConditionalApprovalData` edge in the connection.""" +type ConditionalApprovalDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Attachment` at the end of the edge.""" - node: Attachment + """The `ConditionalApprovalData` at the end of the edge.""" + node: ConditionalApprovalData } -"""Methods to use when ordering `Attachment`.""" -enum AttachmentsOrderBy { +"""Methods to use when ordering `ConditionalApprovalData`.""" +enum ConditionalApprovalDataOrderBy { NATURAL ID_ASC ID_DESC - FILE_ASC - FILE_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FILE_NAME_ASC - FILE_NAME_DESC - FILE_TYPE_ASC - FILE_TYPE_DESC - FILE_SIZE_ASC - FILE_SIZE_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - APPLICATION_STATUS_ID_ASC - APPLICATION_STATUS_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -33642,33 +33598,18 @@ enum AttachmentsOrderBy { } """ -A condition to be used against `Attachment` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ConditionalApprovalData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input AttachmentCondition { +input ConditionalApprovalDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `file` field.""" - file: UUID - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `fileName` field.""" - fileName: String - - """Checks for equality with the object’s `fileType` field.""" - fileType: String - - """Checks for equality with the object’s `fileSize` field.""" - fileSize: String - """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `applicationStatusId` field.""" - applicationStatusId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33689,327 +33630,245 @@ input AttachmentCondition { archivedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `ApplicationGisAssessmentHh` values.""" +type ApplicationGisAssessmentHhsConnection { + """A list of `ApplicationGisAssessmentHh` objects.""" + nodes: [ApplicationGisAssessmentHh]! """ - 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 `ApplicationGisAssessmentHh` and cursor to aid in pagination. """ - edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationGisAssessmentHhsEdge!]! """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 - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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! -} - -""" -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. + The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. """ - 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 - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +"""Table containing data for the gis assessment hh numbers""" +type ApplicationGisAssessmentHh implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [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 + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Primary key and unique identifier""" + rowId: Int! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The application_id of the application this record is associated with""" + applicationId: Int! - """Only read the last `n` values of the set.""" - last: Int + """The number of eligible households""" + eligible: Float - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The number of eligible indigenous households""" + eligibleIndigenous: Float - """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 `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [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: AttachmentCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! -} + """archived by user id""" + archivedBy: Int -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """archived at timestamp""" + archivedAt: Datetime """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { +"""A `ApplicationGisAssessmentHh` edge in the connection.""" +type ApplicationGisAssessmentHhsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationGisAssessmentHh` at the end of the edge.""" + node: ApplicationGisAssessmentHh +} - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" +enum ApplicationGisAssessmentHhsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ELIGIBLE_ASC + ELIGIBLE_DESC + ELIGIBLE_INDIGENOUS_ASC + ELIGIBLE_INDIGENOUS_DESC + 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 `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 - """ - 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 `eligible` field.""" + eligible: Float - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: Float - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -"""A `ApplicationStatus` edge in the connection.""" -type ApplicationStatusesEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """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 `ApplicationFormData` values.""" -type ApplicationFormDataConnection { - """A list of `ApplicationFormData` objects.""" - nodes: [ApplicationFormData]! +"""A connection to a list of `ApplicationGisData` values.""" +type ApplicationGisDataConnection { + """A list of `ApplicationGisData` objects.""" + nodes: [ApplicationGisData]! """ - A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. """ - edges: [ApplicationFormDataEdge!]! + edges: [ApplicationGisDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationFormData` you could get from the connection. + The count of *all* `ApplicationGisData` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to form data""" -type ApplicationFormData implements Node { +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 - """The foreign key of a form""" - formDataId: Int! + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) + """ + jsonData: JSON! - """The foreign key of an application""" - applicationId: Int! + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `GisData` that is related to this `ApplicationGisData`.""" + gisDataByBatchId: GisData """ - Reads a single `FormData` that is related to this `ApplicationFormData`. + Reads a single `Application` that is related to this `ApplicationGisData`. """ - formDataByFormDataId: FormData + applicationByApplicationId: Application """ - Reads a single `Application` that is related to this `ApplicationFormData`. + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. """ - applicationByApplicationId: Application + 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 } -"""Table to hold applicant form data""" -type FormData 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 unique id of the form data""" + """Primary key and unique identifier""" 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) + 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! - """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 @@ -34028,31 +33887,17 @@ 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`. - """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType - - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """Reads a single `CcbcUser` that is related to this `GisData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """Reads a single `CcbcUser` that is related to this `GisData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """Reads a single `CcbcUser` that is related to this `GisData`.""" ccbcUserByArchivedBy: CcbcUser - """Reads a single `Form` that is related to this `FormData`.""" - formByFormSchemaId: Form - - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByFormDataId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -34071,25 +33916,22 @@ type FormData 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationFormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! - - """computed column to display whether form_data is editable or not""" - isEditable: Boolean + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormDataFormDataIdAndApplicationId( + applicationsByApplicationGisDataBatchIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34120,58 +33962,10 @@ type FormData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! -} - -"""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 - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( + ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34202,10 +33996,10 @@ type FormDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( + ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34236,10 +34030,10 @@ type FormDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( + ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34270,80 +34064,20 @@ type FormDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataFormDataStatusTypeIdAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): 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 + ): 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 @@ -34356,30 +34090,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 @@ -34398,25 +34128,83 @@ input FormDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime +} - """Checks for equality with the object’s `formSchemaId` field.""" - formSchemaId: Int +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `reasonForChange` field.""" - reasonForChange: String + """ + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + """ + edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type 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: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34425,16 +34213,18 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { +""" +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`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34453,32 +34243,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 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: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34487,16 +34277,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 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`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34515,32 +34307,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 GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { """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: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34549,16 +34341,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 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 `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34577,759 +34371,813 @@ 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 `ApplicationGisData` edge in the connection.""" +type ApplicationGisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationGisData` at the end of the edge.""" + node: ApplicationGisData +} + +"""A connection to a list of `ProjectInformationData` values.""" +type ProjectInformationDataConnection { + """A list of `ProjectInformationData` objects.""" + nodes: [ProjectInformationData]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! + edges: [ProjectInformationDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """ + The count of *all* `ProjectInformationData` you could get from the connection. + """ totalCount: Int! } -"""Table to hold the json_schema for forms""" -type Form implements Node { +"""Table to store project information data""" +type ProjectInformationData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key on form""" + """Unique id for the row""" rowId: Int! - """The end url for the form data""" - slug: String + """The foreign key of an application""" + applicationId: Int - """The JSON schema for the respective form""" - jsonSchema: JSON! + """ + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) + """ + jsonData: JSON! - """Description of the form""" - description: String + """created by user id""" + createdBy: Int - """The type of form being stored""" - formType: String + """created at timestamp""" + createdAt: Datetime! - """Reads a single `FormType` that is related to this `Form`.""" - formTypeByFormType: FormType + """updated by user id""" + updatedBy: Int - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """updated at timestamp""" + updatedAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """archived by user id""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """archived at timestamp""" + archivedAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `Application` that is related to this `ProjectInformationData`. + """ + applicationByApplicationId: Application - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! +"""A `ProjectInformationData` edge in the connection.""" +type ProjectInformationDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int + """The `ProjectInformationData` at the end of the edge.""" + node: ProjectInformationData +} - """Only read the last `n` values of the set.""" - last: Int +"""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 +} - """ - 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 `ProjectInformationData` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ProjectInformationDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataStatusTypeCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataStatusTypeFilter - ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `ApplicationAnnounced` values.""" +type ApplicationAnnouncedsConnection { + """A list of `ApplicationAnnounced` objects.""" + nodes: [ApplicationAnnounced]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `ApplicationAnnounced` and cursor to aid in pagination. + """ + edges: [ApplicationAnnouncedsEdge!]! - """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* `ApplicationAnnounced` 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 - ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! +"""Table containing if the application has been announced by BC or ISED""" +type ApplicationAnnounced 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`.""" - ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Unique ID for the application_announced""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """ID of the application this record 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 + """Whether the application has been announced by BC or ISED""" + announced: Boolean - """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 - ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + """archived by user id""" + archivedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """archived at timestamp""" + archivedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """ + Reads a single `Application` that is related to this `ApplicationAnnounced`. + """ + applicationByApplicationId: Application - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + """ + ccbcUserByUpdatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A `ApplicationAnnounced` edge in the connection.""" +type ApplicationAnnouncedsEdge { + """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 `ApplicationAnnounced` at the end of the edge.""" + node: ApplicationAnnounced +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! +"""Methods to use when ordering `ApplicationAnnounced`.""" +enum ApplicationAnnouncedsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ANNOUNCED_ASC + ANNOUNCED_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 types of forms used in the application""" -type FormType implements Node { +""" +A condition to be used against `ApplicationAnnounced` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationAnnouncedCondition { + """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 `announced` field.""" + announced: Boolean + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `ApplicationClaimsData` values.""" +type ApplicationClaimsDataConnection { + """A list of `ApplicationClaimsData` objects.""" + nodes: [ApplicationClaimsData]! + + """ + A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationClaimsData` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the claims data for the given application""" +type ApplicationClaimsData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier of the type of form""" - name: String! + """Unique id for the claims""" + rowId: Int! - """Description of the type of form""" - description: String + """Id of the application the claims belongs to""" + applicationId: Int - """Reads and enables pagination through a set of `Form`.""" - formsByFormType( - """Only read the first `n` values of the set.""" - first: Int + """The claims form json data""" + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormsConnection! -} + """archived at timestamp""" + archivedAt: Datetime -"""A connection to a list of `Form` values.""" -type FormsConnection { - """A list of `Form` objects.""" - nodes: [Form]! + """Column to track if record was created, updated or deleted for history""" + historyOperation: String """ - A list of edges which contains the `Form` and cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationClaimsData`. """ - edges: [FormsEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `Form` edge in the connection.""" -type FormsEdge { +"""A `ApplicationClaimsData` edge in the connection.""" +type ApplicationClaimsDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `ApplicationClaimsData` at the end of the edge.""" + node: ApplicationClaimsData } -"""Methods to use when ordering `Form`.""" -enum FormsOrderBy { +"""Methods to use when ordering `ApplicationClaimsData`.""" +enum ApplicationClaimsDataOrderBy { 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 + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `Form` 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 FormCondition { +input ApplicationClaimsDataCondition { """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 `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonSchema` field.""" - jsonSchema: JSON + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """Checks for equality with the object’s `formType` field.""" - formType: 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 `historyOperation` field.""" + historyOperation: String } -""" -A connection to a list of `FormDataStatusType` values, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +"""A connection to a list of `ApplicationClaimsExcelData` values.""" +type ApplicationClaimsExcelDataConnection { + """A list of `ApplicationClaimsExcelData` objects.""" + nodes: [ApplicationClaimsExcelData]! """ - 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 `ApplicationClaimsExcelData` and cursor to aid in pagination. """ - edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [ApplicationClaimsExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationClaimsExcelData` 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 - - """Only read the last `n` values of the set.""" - last: 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! - """ - 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 claims excel data""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ID of the application this data belongs to""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [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: FormDataCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """updated by user id""" + updatedBy: Int -"""Methods to use when ordering `FormDataStatusType`.""" -enum FormDataStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """updated at timestamp""" + updatedAt: Datetime! -""" -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 + """archived by user id""" + archivedBy: Int - """Checks for equality with the object’s `description` field.""" - description: String -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { +"""A `ApplicationClaimsExcelData` edge in the connection.""" +type ApplicationClaimsExcelDataEdge { """A cursor 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 - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: FormDataCondition + """The `ApplicationClaimsExcelData` at the end of the edge.""" + node: ApplicationClaimsExcelData +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! +"""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 connection to a list of `CcbcUser` values, with data from `FormData`. +A condition to be used against `ApplicationClaimsExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -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 +input ApplicationClaimsExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `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 `FormData`.""" - orderBy: [FormDataOrderBy!] = [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: FormDataCondition + """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: FormDataFilter - ): FormDataConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `ApplicationCommunityProgressReportData` values. """ -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { - """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 `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! + 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 `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 +""" +Table containing the Community Progress Report data for the given application +""" +type ApplicationCommunityProgressReportData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for the Community Progress Report""" + 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 Community Progress Report belongs to""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + The due date, date received and the file information of the Community Progress Report Excel file + """ + 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 `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """updated at timestamp""" + updatedAt: Datetime! -"""A `Form` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """archived by user id""" + archivedBy: Int - """The `Form` at the end of the edge.""" - node: Form + """archived at timestamp""" + archivedAt: Datetime - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """Only read the last `n` values of the set.""" - last: Int + """History operation""" + 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 `ApplicationCommunityProgressReportData`. + """ + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition +"""A `ApplicationCommunityProgressReportData` edge in the connection.""" +type ApplicationCommunityProgressReportDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """The `ApplicationCommunityProgressReportData` at the end of the edge.""" + node: ApplicationCommunityProgressReportData } -"""Methods to use when ordering `ApplicationFormData`.""" -enum ApplicationFormDataOrderBy { +"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" +enum ApplicationCommunityProgressReportDataOrderBy { NATURAL - FORM_DATA_ID_ASC - FORM_DATA_ID_DESC + 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 `ApplicationFormData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationCommunityProgressReportData` 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 +input ApplicationCommunityProgressReportDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: 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]! + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -""" -A `Application` edge in the connection, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The `Application` at the end of the edge.""" - node: Application -} + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int -"""A `ApplicationFormData` edge in the connection.""" -type ApplicationFormDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """The `ApplicationFormData` at the end of the edge.""" - node: ApplicationFormData + """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 `ApplicationAnalystLead` values.""" -type ApplicationAnalystLeadsConnection { - """A list of `ApplicationAnalystLead` objects.""" - nodes: [ApplicationAnalystLead]! +""" +A connection to a list of `ApplicationCommunityReportExcelData` values. +""" +type ApplicationCommunityReportExcelDataConnection { + """A list of `ApplicationCommunityReportExcelData` objects.""" + nodes: [ApplicationCommunityReportExcelData]! """ - A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. """ - edges: [ApplicationAnalystLeadsEdge!]! + edges: [ApplicationCommunityReportExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnalystLead` you could get from the connection. + The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. """ totalCount: Int! } -"""Table containing the analyst lead for the given application""" -type ApplicationAnalystLead 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! - """Unique ID for the application_analyst_lead""" + """Unique ID for the Community Report excel data""" rowId: Int! - """ID of the application this analyst lead belongs to""" + """ID of the application this Community Report belongs to""" applicationId: Int - """ID of the analyst this analyst lead belongs to""" - analystId: Int + """The data imported from the excel filled by the respondent""" + jsonData: JSON! """created by user id""" createdBy: Int @@ -35350,49 +35198,44 @@ type ApplicationAnalystLead implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationAnalystLead`. + Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. """ applicationByApplicationId: Application """ - Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. - """ - analystByAnalystId: Analyst - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationAnalystLead` edge in the connection.""" -type ApplicationAnalystLeadsEdge { +"""A `ApplicationCommunityReportExcelData` edge in the connection.""" +type ApplicationCommunityReportExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnalystLead` at the end of the edge.""" - node: ApplicationAnalystLead + """The `ApplicationCommunityReportExcelData` at the end of the edge.""" + node: ApplicationCommunityReportExcelData } -"""Methods to use when ordering `ApplicationAnalystLead`.""" -enum ApplicationAnalystLeadsOrderBy { +"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" +enum ApplicationCommunityReportExcelDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ANALYST_ID_ASC - ANALYST_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -35410,18 +35253,18 @@ enum ApplicationAnalystLeadsOrderBy { } """ -A condition to be used against `ApplicationAnalystLead` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationCommunityReportExcelData` object +types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnalystLeadCondition { +input ApplicationCommunityReportExcelDataCondition { """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 `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -35442,67 +35285,40 @@ input ApplicationAnalystLeadCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationRfiData` values.""" -type ApplicationRfiDataConnection { - """A list of `ApplicationRfiData` objects.""" - nodes: [ApplicationRfiData]! +"""A connection to a list of `ApplicationInternalDescription` values.""" +type ApplicationInternalDescriptionsConnection { + """A list of `ApplicationInternalDescription` objects.""" + nodes: [ApplicationInternalDescription]! """ - A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataEdge!]! + edges: [ApplicationInternalDescriptionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationRfiData` you could get from the connection. + The count of *all* `ApplicationInternalDescription` 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 internal description for the given application""" +type ApplicationInternalDescription implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique id for the row""" rowId: Int! - """Reference number assigned to the RFI""" - rfiNumber: String - - """ - 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! + """Id of the application the description belongs to""" + applicationId: Int - """Column referencing the form data status type, defaults to draft""" - rfiDataStatusTypeId: String + """The internal description for the given application""" + description: String """created by user id""" createdBy: Int @@ -35522,300 +35338,343 @@ type RfiData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + """ + Reads a single `Application` that is related to this `ApplicationInternalDescription`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByRfiDataId( - """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 `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [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: ApplicationRfiDataCondition + """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: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Computed column to return all attachement rows for an rfi_data row""" - attachments( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationMilestoneData` values.""" +type ApplicationMilestoneDataConnection { + """A list of `ApplicationMilestoneData` objects.""" + nodes: [ApplicationMilestoneData]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """ + A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. + """ + edges: [ApplicationMilestoneDataEdge!]! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationRfiDataRfiDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Only read the last `n` values of the set.""" - last: Int + """ + The count of *all* `ApplicationMilestoneData` you could get from the connection. + """ + totalCount: Int! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: 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! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Unique id for the milestone""" + rowId: Int! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Id of the application the milestone belongs to""" + applicationId: Int - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The milestone form json data""" + jsonData: JSON! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """The id of the excel data that this record is associated with""" + excelDataId: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! -} + """created by user id""" + createdBy: Int -"""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! + """created at timestamp""" + createdAt: Datetime! - """The name of the status type""" - name: String! + """updated by user id""" + updatedBy: Int - """The description of the status type""" - description: String + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( - """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 + """History operation""" + historyOperation: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `Application` that is related to this `ApplicationMilestoneData`. + """ + applicationByApplicationId: Application - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): RfiDataConnection! +"""A `ApplicationMilestoneData` edge in the connection.""" +type ApplicationMilestoneDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The `ApplicationMilestoneData` at the end of the edge.""" + node: ApplicationMilestoneData +} - """Only read the last `n` values of the set.""" - last: 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 +} - """ - 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 `ApplicationMilestoneData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set 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 `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: 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 `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `ApplicationMilestoneExcelData` values.""" +type ApplicationMilestoneExcelDataConnection { + """A list of `ApplicationMilestoneExcelData` objects.""" + nodes: [ApplicationMilestoneExcelData]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. + """ + edges: [ApplicationMilestoneExcelDataEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. + """ + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! +"""Table containing the milestone excel data for the given application""" +type ApplicationMilestoneExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Unique ID for the milestone excel data""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """ID of the application this data belongs to""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `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 - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! -} + """archived by user id""" + archivedBy: Int -"""A connection to a list of `RfiData` values.""" -type RfiDataConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! + """archived at timestamp""" + archivedAt: Datetime """ - A list of edges which contains the `RfiData` and cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. """ - edges: [RfiDataEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `RfiData` edge in the connection.""" -type RfiDataEdge { +"""A `ApplicationMilestoneExcelData` edge in the connection.""" +type ApplicationMilestoneExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """The `ApplicationMilestoneExcelData` at the end of the edge.""" + node: ApplicationMilestoneExcelData } -"""Methods to use when ordering `RfiData`.""" -enum RfiDataOrderBy { +"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" +enum ApplicationMilestoneExcelDataOrderBy { NATURAL ID_ASC ID_DESC - RFI_NUMBER_ASC - RFI_NUMBER_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - RFI_DATA_STATUS_TYPE_ID_ASC - RFI_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -35833,21 +35692,19 @@ enum RfiDataOrderBy { } """ -A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationMilestoneExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input RfiDataCondition { +input ApplicationMilestoneExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `rfiNumber` field.""" - rfiNumber: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: String - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -35867,33 +35724,89 @@ input RfiDataCondition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationSowData` values.""" +type ApplicationSowDataConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the SoW data for the given application""" +type ApplicationSowData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the SoW""" + rowId: Int! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """ID of the application this SoW belongs to""" + applicationId: Int + + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """The amendment number""" + amendmentNumber: Int + + """Column identifying if the record is an amendment""" + isAmendment: Boolean + + """ + Reads a single `Application` that is related to this `ApplicationSowData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -35912,48 +35825,22 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""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 `RfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - - """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 `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -35972,48 +35859,22 @@ 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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""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 `RfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! - - """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 `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -36032,167 +35893,124 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""Methods to use when ordering `ApplicationRfiData`.""" -enum ApplicationRfiDataOrderBy { - NATURAL - RFI_DATA_ID_ASC - RFI_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationRfiData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationRfiDataCondition { - """Checks for equality with the object’s `rfiDataId` field.""" - rfiDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int -} - -""" -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 `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + filter: SowTab7Filter + ): SowTab7SConnection! -""" -A `Application` edge in the connection, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( + """Only read the first `n` values of the set.""" + first: Int - """The `Application` at the end of the edge.""" - node: Application -} + """Only read the last `n` values of the set.""" + last: Int -"""A `ApplicationRfiData` edge in the connection.""" -type ApplicationRfiDataEdge { - """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 `ApplicationRfiData` at the end of the edge.""" - node: ApplicationRfiData -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A connection to a list of `AssessmentData` values.""" -type AssessmentDataConnection { - """A list of `AssessmentData` objects.""" - nodes: [AssessmentData]! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - A list of edges which contains the `AssessmentData` and cursor to aid in pagination. - """ - edges: [AssessmentDataEdge!]! + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [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: SowTab8Condition - """The count of *all* `AssessmentData` you could get from the connection.""" - totalCount: Int! -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab8Filter + ): SowTab8SConnection! -type AssessmentData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - applicationId: Int! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) - """ - jsonData: JSON! - assessmentDataType: String + """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 + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! - """Reads a single `Application` that is related to this `AssessmentData`.""" - applicationByApplicationId: Application + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `AssessmentType` that is related to this `AssessmentData`. - """ - assessmentTypeByAssessmentDataType: AssessmentType + """Only read the last `n` values of the set.""" + last: Int - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByCreatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set after (below) this cursor.""" + after: 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 method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Name of and primary key of the type of an assessment""" - name: String! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Description of the assessment type""" - description: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36211,22 +36029,22 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36245,22 +36063,22 @@ type AssessmentType 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 - ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( + ccbcUsersBySowTab2SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36291,10 +36109,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( + ccbcUsersBySowTab2SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36325,10 +36143,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( + ccbcUsersBySowTab7SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36359,103 +36177,78 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `AssessmentData`.""" -enum AssessmentDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - ASSESSMENT_DATA_TYPE_ASC - ASSESSMENT_DATA_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! -""" -A condition to be used against `AssessmentData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AssessmentDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `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 `assessmentDataType` field.""" - assessmentDataType: 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 + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { - """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 `Application` at the end of the edge.""" - node: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36474,50 +36267,22 @@ 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 `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! -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { - """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: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! - - """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 AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36536,50 +36301,22 @@ 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 `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! -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36598,126 +36335,309 @@ 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 `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 + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! +} + +"""A connection to a list of `SowTab1` values.""" +type SowTab1SConnection { + """A list of `SowTab1` objects.""" + nodes: [SowTab1]! + + """ + A list of edges which contains the `SowTab1` and cursor to aid in pagination. + """ + edges: [SowTab1SEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `SowTab1` 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 + + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + applicationSowDataBySowId: ApplicationSowData + + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + ccbcUserByUpdatedBy: CcbcUser + + """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 } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +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 `SowTab2` values.""" +type SowTab2SConnection { + """A list of `SowTab2` objects.""" + nodes: [SowTab2]! """ - 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 `SowTab2` and cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + 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 `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { +"""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! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `ApplicationSowData` that is related to this `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 +} + +"""A `SowTab2` edge in the connection.""" +type SowTab2SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """The `SowTab2` at the end of the edge.""" + node: SowTab2 +} - """Only read the last `n` values of the set.""" - last: Int +"""Methods to use when ordering `SowTab2`.""" +enum SowTab2SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - 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 `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input SowTab2Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `sowId` field.""" + sowId: 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 `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [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: AssessmentDataCondition + """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: AssessmentDataFilter - ): AssessmentDataConnection! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -"""A `AssessmentData` edge in the connection.""" -type AssessmentDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The `AssessmentData` at the end of the edge.""" - node: AssessmentData + """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 `ApplicationPackage` values.""" -type ApplicationPackagesConnection { - """A list of `ApplicationPackage` objects.""" - nodes: [ApplicationPackage]! +"""A connection to a list of `SowTab7` values.""" +type SowTab7SConnection { + """A list of `SowTab7` objects.""" + nodes: [SowTab7]! """ - A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. + A list of edges which contains the `SowTab7` and cursor to aid in pagination. """ - edges: [ApplicationPackagesEdge!]! + edges: [SowTab7SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationPackage` you could get from the connection. - """ + """The count of *all* `SowTab7` you could get from the connection.""" totalCount: Int! } -"""Table containing the package the application is assigned to""" -type ApplicationPackage implements Node { +type SowTab7 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - - """Unique ID for the application_package""" rowId: Int! + sowId: Int - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: 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_7.json) + """ + jsonData: JSON! """created by user id""" createdBy: Int @@ -36737,45 +36657,37 @@ type ApplicationPackage implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationPackage` edge in the connection.""" -type ApplicationPackagesEdge { +"""A `SowTab7` edge in the connection.""" +type SowTab7SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPackage` at the end of the edge.""" - node: ApplicationPackage + """The `SowTab7` at the end of the edge.""" + node: SowTab7 } -"""Methods to use when ordering `ApplicationPackage`.""" -enum ApplicationPackagesOrderBy { +"""Methods to use when ordering `SowTab7`.""" +enum SowTab7SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PACKAGE_ASC - PACKAGE_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -36793,18 +36705,17 @@ enum ApplicationPackagesOrderBy { } """ -A condition to be used against `ApplicationPackage` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationPackageCondition { +input SowTab7Condition { """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 `package` field.""" - package: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -36825,40 +36736,38 @@ input ApplicationPackageCondition { archivedAt: Datetime } -"""A connection to a list of `ConditionalApprovalData` values.""" -type ConditionalApprovalDataConnection { - """A list of `ConditionalApprovalData` objects.""" - nodes: [ConditionalApprovalData]! +"""A connection to a list of `SowTab8` values.""" +type SowTab8SConnection { + """A list of `SowTab8` objects.""" + nodes: [SowTab8]! """ - A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. + A list of edges which contains the `SowTab8` and cursor to aid in pagination. """ - edges: [ConditionalApprovalDataEdge!]! + edges: [SowTab8SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ConditionalApprovalData` you could get from the connection. - """ + """The count of *all* `SowTab8` you could get from the connection.""" totalCount: Int! } -"""Table to store conditional approval data""" -type ConditionalApprovalData implements Node { +"""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! - """Unique id for the row""" + """Unique ID for the SoW Tab 8""" rowId: Int! - """The foreign key of an application""" - applicationId: Int + """ID of the SoW""" + sowId: Int """ - The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) + The 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! @@ -36880,43 +36789,35 @@ type ConditionalApprovalData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ConditionalApprovalData`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ConditionalApprovalData` edge in the connection.""" -type ConditionalApprovalDataEdge { +"""A `SowTab8` edge in the connection.""" +type SowTab8SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ConditionalApprovalData` at the end of the edge.""" - node: ConditionalApprovalData + """The `SowTab8` at the end of the edge.""" + node: SowTab8 } -"""Methods to use when ordering `ConditionalApprovalData`.""" -enum ConditionalApprovalDataOrderBy { +"""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 CREATED_BY_ASC @@ -36936,15 +36837,14 @@ enum ConditionalApprovalDataOrderBy { } """ -A condition to be used against `ConditionalApprovalData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ConditionalApprovalDataCondition { +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 @@ -36968,125 +36868,213 @@ input ConditionalApprovalDataCondition { archivedAt: Datetime } -"""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 ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { + """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: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! """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 ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { + """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`.""" + sowTab1SByCreatedBy( + """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 `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { + """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 `SowTab1`, and the cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! - """ - 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 `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { + """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 + + """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 + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [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) + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - jsonData: JSON! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! - """created by user id""" - createdBy: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """created at timestamp""" - createdAt: Datetime! + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """updated by user id""" - updatedBy: Int +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( + """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 `CcbcUser` that is related to this `GisData`.""" - ccbcUserByCreatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByArchivedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { + """A cursor 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 @@ -37105,22 +37093,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataBatchIdAndApplicationId( +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """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 @@ -37139,22 +37153,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 `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! +} + +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37173,22 +37213,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! + filter: SowTab2Filter + ): SowTab2SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37207,22 +37273,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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! + + """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 @@ -37241,115 +37333,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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! -} - -"""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 - 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 `ApplicationGisData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationGisDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `batchId` field.""" - batchId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -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 `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37368,32 +37393,30 @@ type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { +"""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 `ApplicationGisData`, 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: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37402,18 +37425,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37432,32 +37453,30 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { +"""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 `ApplicationGisData`, 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: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37466,18 +37485,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37496,32 +37513,30 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { +"""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 `ApplicationGisData`, 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: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37530,18 +37545,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37560,61 +37573,277 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + 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 `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 `ApplicationGisData` edge in the connection.""" -type ApplicationGisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""A `ChangeRequestData` edge in the connection.""" +type ChangeRequestDataEdge { + """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 - """The `ApplicationGisData` at the end of the edge.""" - node: ApplicationGisData + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int } -"""A connection to a list of `ApplicationAnnouncement` values.""" -type ApplicationAnnouncementsConnection { - """A list of `ApplicationAnnouncement` objects.""" - nodes: [ApplicationAnnouncement]! +"""A connection to a list of `Notification` values.""" +type NotificationsConnection { + """A list of `Notification` objects.""" + nodes: [Notification]! """ - A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + A list of edges which contains the `Notification` and cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsEdge!]! + edges: [NotificationsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationAnnouncement` you could get from the connection. - """ + """The count of *all* `Notification` you could get from the connection.""" totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationAnnouncement implements Node { +"""Table containing list of application notifications""" +type Notification implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The foreign key of a form""" - announcementId: Int! + """Unique ID for each notification""" + rowId: Int! - """The foreign key of an application""" - applicationId: 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 @@ -37634,56 +37863,48 @@ type ApplicationAnnouncement implements Node { """archived at timestamp""" archivedAt: Datetime - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean - - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - historyOperation: String - - """ - Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. - """ - announcementByAnnouncementId: Announcement - - """ - Reads a single `Application` that is related to this `ApplicationAnnouncement`. - """ + """Reads a single `Application` that is related to this `Notification`.""" applicationByApplicationId: Application - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ + """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 `ApplicationAnnouncement`. - """ + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. - """ + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByArchivedBy: CcbcUser } -"""Table to hold the announcement data""" -type Announcement implements Node { +"""Table containing list of application email_records""" +type EmailRecord implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the announcement data""" + """Unique ID for each email sent""" rowId: Int! - """List of CCBC number of the projects included in announcement""" - ccbcNumbers: String + """Email Address(es) of the recipients""" + toEmail: 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) - """ + """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""" @@ -37704,19 +37925,17 @@ type Announcement implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `Announcement`.""" + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Announcement`.""" + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Announcement`.""" + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" ccbcUserByArchivedBy: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -37735,22 +37954,22 @@ type Announcement 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: NotificationFilter + ): NotificationsConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( + applicationsByNotificationEmailRecordIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -37781,10 +38000,10 @@ type Announcement implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! + ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( + ccbcUsersByNotificationEmailRecordIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37815,10 +38034,10 @@ type Announcement implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( + ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37849,10 +38068,10 @@ type Announcement implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( + ccbcUsersByNotificationEmailRecordIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37883,16 +38102,22 @@ type Announcement implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `ApplicationAnnouncement`.""" -enum ApplicationAnnouncementsOrderBy { +"""Methods to use when ordering `Notification`.""" +enum NotificationsOrderBy { NATURAL - ANNOUNCEMENT_ID_ASC - ANNOUNCEMENT_ID_DESC + 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 @@ -37905,25 +38130,30 @@ enum ApplicationAnnouncementsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - IS_PRIMARY_ASC - IS_PRIMARY_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationAnnouncement` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Notification` 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 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 @@ -37941,25 +38171,19 @@ 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`. +A connection to a list of `Application` values, with data from `Notification`. """ -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! + edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37968,54 +38192,60 @@ type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicati totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """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] - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38024,20 +38254,16 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38056,32 +38282,32 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38090,20 +38316,16 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38122,32 +38344,32 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38156,20 +38378,16 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38188,67 +38406,212 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A `ApplicationAnnouncement` edge in the connection.""" -type ApplicationAnnouncementsEdge { +"""A `Notification` edge in the connection.""" +type NotificationsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnnouncement` at the end of the edge.""" - node: ApplicationAnnouncement + """The `Notification` at the end of the edge.""" + node: Notification } -"""A connection to a list of `ApplicationGisAssessmentHh` values.""" -type ApplicationGisAssessmentHhsConnection { - """A list of `ApplicationGisAssessmentHh` objects.""" - nodes: [ApplicationGisAssessmentHh]! +"""A connection to a list of `ApplicationPackage` values.""" +type ApplicationPackagesConnection { + """A list of `ApplicationPackage` objects.""" + nodes: [ApplicationPackage]! """ - A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. """ - edges: [ApplicationGisAssessmentHhsEdge!]! + edges: [ApplicationPackagesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. + The count of *all* `ApplicationPackage` you could get from the connection. """ totalCount: Int! } -"""Table containing data for the gis assessment hh numbers""" -type ApplicationGisAssessmentHh 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! - """Primary key and unique identifier""" + """Unique ID for the application_package""" rowId: Int! """The application_id of the application this record is associated with""" - applicationId: Int! + applicationId: Int - """The number of eligible households""" - eligible: Float + """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 +} + +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! + + """ + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. + """ + edges: [ApplicationPendingChangeRequestsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_pending_change_request""" + rowId: Int! + + """ + ID of the application this application_pending_change_request belongs to + """ + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean - """The number of eligible indigenous households""" - eligibleIndigenous: Float + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String """created by user id""" createdBy: Int @@ -38269,46 +38632,46 @@ type ApplicationGisAssessmentHh implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationGisAssessmentHh` edge in the connection.""" -type ApplicationGisAssessmentHhsEdge { +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationGisAssessmentHh` at the end of the edge.""" - node: ApplicationGisAssessmentHh + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest } -"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" -enum ApplicationGisAssessmentHhsOrderBy { +"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" +enum ApplicationPendingChangeRequestsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ELIGIBLE_ASC - ELIGIBLE_DESC - ELIGIBLE_INDIGENOUS_ASC - ELIGIBLE_INDIGENOUS_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -38326,21 +38689,21 @@ enum ApplicationGisAssessmentHhsOrderBy { } """ -A condition to be used against `ApplicationGisAssessmentHh` 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 ApplicationGisAssessmentHhCondition { +input ApplicationPendingChangeRequestCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `eligible` field.""" - eligible: Float + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean - """Checks for equality with the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: Float + """Checks for equality with the object’s `comment` field.""" + comment: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -38361,42 +38724,40 @@ input ApplicationGisAssessmentHhCondition { 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 `ApplicationProjectType` values.""" +type ApplicationProjectTypesConnection { + """A list of `ApplicationProjectType` objects.""" + nodes: [ApplicationProjectType]! """ - A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. """ - edges: [ApplicationSowDataEdge!]! + edges: [ApplicationProjectTypesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationSowData` you could get from the connection. + The count of *all* `ApplicationProjectType` you could get from the connection. """ totalCount: Int! } -"""Table containing the SoW data for the given application""" -type ApplicationSowData implements Node { +"""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 SoW""" + """Unique ID for the application_project_type""" rowId: Int! - """ID of the application this SoW belongs to""" + """ID of the application this application_project_type 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! + """Column containing the project type of the application""" + projectType: String """created by user id""" createdBy: Int @@ -38416,238 +38777,242 @@ 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 `ApplicationProjectType`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. """ ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( - """Only read the first `n` values of the set.""" - first: Int +"""A `ApplicationProjectType` edge in the connection.""" +type ApplicationProjectTypesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `ApplicationProjectType` at the end of the edge.""" + node: ApplicationProjectType +} - """ - 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 `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 +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +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 - """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 `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `projectType` field.""" + projectType: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab2Condition + """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: SowTab2Filter - ): SowTab2SConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( - """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 `Attachment` values.""" +type AttachmentsConnection { + """A list of `Attachment` objects.""" + nodes: [Attachment]! - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `Attachment` and cursor to aid in pagination. + """ + edges: [AttachmentsEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! + """The count of *all* `Attachment` you could get from the connection.""" + totalCount: Int! +} - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( - """Only read the first `n` values of the set.""" - first: 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! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for the attachment""" + 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 + """ + Universally Unique ID for the attachment, created by the fastapi storage micro-service + """ + file: UUID - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Description of the attachment""" + description: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Original uploaded file name""" + fileName: String - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """Original uploaded file type""" + fileType: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab7Condition + """Original uploaded file size""" + fileSize: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab7Filter - ): SowTab7SConnection! + """ + The id of the project (ccbc_public.application.id) that the attachment was uploaded to + """ + applicationId: Int! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( - """Only read the first `n` values of the set.""" - first: Int + """ + The id of the application_status (ccbc_public.application_status.id) that the attachment references + """ + applicationStatusId: 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 `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [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: SowTab8Condition + """archived at timestamp""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab8Filter - ): SowTab8SConnection! + """Reads a single `Application` that is related to this `Attachment`.""" + applicationByApplicationId: Application - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Reads a single `ApplicationStatus` that is related to this `Attachment`. + """ + applicationStatusByApplicationStatusId: ApplicationStatus - """Only read the last `n` values of the set.""" - last: Int + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByCreatedBy: CcbcUser - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByUpdatedBy: CcbcUser - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByArchivedBy: CcbcUser +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""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! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Unique ID for the application_status""" + rowId: Int! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ID of the application this status belongs to""" + applicationId: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! + """The status of the application""" + status: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndUpdatedBy( - """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 + """Change reason for analyst status change""" + changeReason: String - """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] + """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 - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! + """ + Reads a single `Application` that is related to this `ApplicationStatus`. + """ + applicationByApplicationId: Application - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndArchivedBy( + """ + 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 @@ -38666,22 +39031,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 `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 - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentApplicationStatusIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38700,22 +39065,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 - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndUpdatedBy( + ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38746,10 +39111,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndArchivedBy( + ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38780,10 +39145,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndCreatedBy( + ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38814,10 +39179,39 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndUpdatedBy( +""" +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 @@ -38836,22 +39230,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 `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 - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusStatusAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38870,22 +39264,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 - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndCreatedBy( + ccbcUsersByApplicationStatusStatusAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38916,10 +39310,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndUpdatedBy( + ccbcUsersByApplicationStatusStatusAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38950,10 +39344,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndArchivedBy( + ccbcUsersByApplicationStatusStatusAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38984,121 +39378,77 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! } -"""A connection to a list of `SowTab2` values.""" -type SowTab2SConnection { - """A list of `SowTab2` objects.""" - nodes: [SowTab2]! +"""A connection to a list of `ApplicationStatus` values.""" +type ApplicationStatusesConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `SowTab2` and cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. """ - edges: [SowTab2SEdge!]! + edges: [ApplicationStatusesEdge!]! """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) + The count of *all* `ApplicationStatus` you could get from the connection. """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `ApplicationSowData` that is related to this `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 + totalCount: Int! } -"""A `SowTab2` edge in the connection.""" -type SowTab2SEdge { +"""A `ApplicationStatus` edge in the connection.""" +type ApplicationStatusesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab2` at the end of the edge.""" - node: SowTab2 + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus } -"""Methods to use when ordering `SowTab2`.""" -enum SowTab2SOrderBy { +"""Methods to use when ordering `ApplicationStatus`.""" +enum ApplicationStatusesOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + STATUS_ASC + STATUS_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 + 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 `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationStatus` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input SowTab2Condition { +input ApplicationStatusCondition { """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 `status` field.""" + status: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -39106,357 +39456,297 @@ input SowTab2Condition { """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 `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 `SowTab1` values.""" -type SowTab1SConnection { - """A list of `SowTab1` objects.""" - nodes: [SowTab1]! +""" +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 `SowTab1` and 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: [SowTab1SEdge!]! + edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! """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 - - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" - applicationSowDataBySowId: ApplicationSowData - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `SowTab1` edge in the connection.""" -type SowTab1SEdge { +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { """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 -} - -""" -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 `Application` at the end of the edge.""" + node: Application - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [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: ApplicationStatusCondition - """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: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""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 `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { + """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [SowTab7SEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! """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 - - """ - 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! - - """created by user id""" - createdBy: Int +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { + """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 `ApplicationStatus`.""" + applicationStatusesByCreatedBy( + """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 `ApplicationSowData` that is related to this `SowTab7`.""" - applicationSowDataBySowId: ApplicationSowData + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByArchivedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A `SowTab7` edge in the connection.""" -type SowTab7SEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """The `SowTab7` at the end of the edge.""" - node: SowTab7 -} + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! -"""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 + """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 `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -input SowTab7Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( + """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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [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: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `SowTab8` values.""" -type SowTab8SConnection { - """A list of `SowTab8` objects.""" - nodes: [SowTab8]! +""" +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 `SowTab8` and 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: [SowTab8SEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab8` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: 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! - - """Unique ID for the SoW Tab 8""" - 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_8.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( + """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 `SowTab8`.""" - 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 `SowTab8`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] -"""A `SowTab8` edge in the connection.""" -type SowTab8SEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """The `SowTab8` at the end of the edge.""" - node: SowTab8 + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""Methods to use when ordering `SowTab8`.""" -enum SowTab8SOrderBy { +"""Methods to use when ordering `Attachment`.""" +enum AttachmentsOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_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 @@ -39474,17 +39764,33 @@ 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 `Attachment` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input SowTab8Condition { +input AttachmentCondition { """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 `file` field.""" + file: UUID - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """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 @@ -39505,33 +39811,35 @@ 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 `Application` values, with data from `Attachment`. +""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - 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 `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! """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 `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { """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 `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -39550,30 +39858,32 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { +""" +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 `SowTab2`, 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: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39582,16 +39892,16 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { +"""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 `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39610,30 +39920,32 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { +""" +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 `SowTab2`, 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: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39642,16 +39954,16 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { +"""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 `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39670,30 +39982,32 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { +""" +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 `SowTab1`, 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: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39702,16 +40016,16 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { +"""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 `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39730,228 +40044,309 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [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 +} + +"""A connection to a list of `ApplicationAnalystLead` values.""" +type ApplicationAnalystLeadsConnection { + """A list of `ApplicationAnalystLead` objects.""" + nodes: [ApplicationAnalystLead]! """ - 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 `ApplicationAnalystLead` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationAnalystLeadsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationAnalystLead` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""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! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the application_analyst_lead""" + rowId: Int! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this analyst lead belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """ID of the analyst this analyst lead belongs to""" + 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 + """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 `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! -} + """archived at timestamp""" + archivedAt: Datetime -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationAnalystLead`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! + analystByAnalystId: Analyst - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + 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 `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { +"""A `ApplicationAnalystLead` edge in the connection.""" +type ApplicationAnalystLeadsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationAnalystLead` at the end of the edge.""" + node: ApplicationAnalystLead +} - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""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 +} - """Only read the last `n` values of the set.""" - last: Int +""" +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 - """ - 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 `analystId` field.""" + analystId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [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: SowTab1Condition + """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: SowTab1Filter - ): SowTab1SConnection! + """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 `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationAnnouncement` values.""" +type ApplicationAnnouncementsConnection { + """A list of `ApplicationAnnouncement` objects.""" + nodes: [ApplicationAnnouncement]! """ - 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 `ApplicationAnnouncement` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationAnnouncementsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationAnnouncement` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table to pair an application to RFI data""" +type ApplicationAnnouncement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The foreign key of a form""" + announcementId: Int! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( - """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 `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [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: SowTab7Condition + """archived at timestamp""" + archivedAt: Datetime + + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean + + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String + + """ + Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + """ + announcementByAnnouncementId: Announcement + + """ + Reads a single `Application` that is related to this `ApplicationAnnouncement`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""Table to hold the announcement data""" +type Announcement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab7Filter - ): SowTab7SConnection! -} + """The unique id of the announcement data""" + rowId: Int! -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """List of CCBC number of the projects included in announcement""" + ccbcNumbers: String """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + 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) """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! + jsonData: JSON! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """created by user id""" + createdBy: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """created at timestamp""" + createdAt: Datetime! -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """updated by user id""" + updatedBy: Int - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """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 @@ -39970,48 +40365,22 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type 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 + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -40030,48 +40399,22 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `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 + filter: ApplicationFilter + ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40090,48 +40433,22 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! -} - -"""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 + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40150,48 +40467,22 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! -} - -"""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 + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40210,39 +40501,28 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! -} - -"""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 + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `ApplicationSowData`.""" -enum ApplicationSowDataOrderBy { +"""Methods to use when ordering `ApplicationAnnouncement`.""" +enum ApplicationAnnouncementsOrderBy { NATURAL - ID_ASC - ID_DESC + ANNOUNCEMENT_ID_ASC + ANNOUNCEMENT_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -40255,28 +40535,25 @@ enum ApplicationSowDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - IS_AMENDMENT_ASC - IS_AMENDMENT_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 `ApplicationSowData` 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 ApplicationSowDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationAnnouncementCondition { + """Checks for equality with the object’s `announcementId` field.""" + announcementId: 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 @@ -40295,49 +40572,41 @@ input ApplicationSowDataCondition { """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 `isPrimary` field.""" + isPrimary: Boolean - """Checks for equality with the object’s `isAmendment` field.""" - isAmendment: Boolean + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -"""A connection to a list of `ProjectInformationData` values.""" -type ProjectInformationDataConnection { - """A list of `ProjectInformationData` objects.""" - nodes: [ProjectInformationData]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ProjectInformationDataEdge!]! + edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ProjectInformationData` you could get from the connection. - """ + """The count of *all* `Application` 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 +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) - """ - jsonData: JSON! + """The `Application` at the end of the edge.""" + node: Application """created by user id""" createdBy: Int @@ -40357,129 +40626,286 @@ type ProjectInformationData implements Node { """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 `ProjectInformationData`. + Column describing the operation (created, updated, deleted) for context on the history page """ - applicationByApplicationId: Application + historyOperation: String +} + +""" +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 `ProjectInformationData`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! + + """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 AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { + """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 `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - ccbcUserByUpdatedBy: CcbcUser + applicationAnnouncementsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ProjectInformationData` edge in the connection.""" -type ProjectInformationDataEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ProjectInformationData` at the end of the edge.""" - node: ProjectInformationData + """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 + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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! } -"""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 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 condition to be used against `ProjectInformationData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -input ProjectInformationDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { + """A cursor 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 - """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 `ApplicationAnnouncement` edge in the connection.""" +type ApplicationAnnouncementsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationAnnouncement` at the end of the edge.""" + node: ApplicationAnnouncement } -"""A connection to a list of `ChangeRequestData` values.""" -type ChangeRequestDataConnection { - """A list of `ChangeRequestData` objects.""" - nodes: [ChangeRequestData]! +"""A connection to a list of `ApplicationFormData` values.""" +type ApplicationFormDataConnection { + """A list of `ApplicationFormData` objects.""" + nodes: [ApplicationFormData]! """ - A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. """ - edges: [ChangeRequestDataEdge!]! + edges: [ApplicationFormDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ChangeRequestData` you could get from the connection. + The count of *all* `ApplicationFormData` you could get from the connection. """ totalCount: Int! } -"""Table to store change request data""" -type ChangeRequestData implements Node { +"""Table to pair an application to form data""" +type ApplicationFormData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the row""" - rowId: Int! + """The foreign key of a form""" + formDataId: Int! """The foreign key of an application""" - applicationId: Int + applicationId: Int! - """The json form data of the change request form""" + """ + 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 @@ -40497,354 +40923,323 @@ type ChangeRequestData implements Node { """archived at timestamp""" archivedAt: Datetime - amendmentNumber: Int + + """Schema for the respective form_data""" + formSchemaId: Int + + """Column to track analysts reason for changing form data""" + reasonForChange: String """ - Reads a single `Application` that is related to this `ChangeRequestData`. + Reads a single `FormDataStatusType` that is related to this `FormData`. """ - applicationByApplicationId: Application + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByArchivedBy: CcbcUser -} -"""A `ChangeRequestData` edge in the connection.""" -type ChangeRequestDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `Form` that is related to this `FormData`.""" + formByFormSchemaId: Form - """The `ChangeRequestData` at the end of the edge.""" - node: ChangeRequestData -} + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByFormDataId( + """Only read the first `n` values of the set.""" + first: 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 -} + """Only read the last `n` values of the set.""" + last: Int -""" -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 + """ + 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 `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [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: ApplicationFormDataCondition - """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: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """computed column to display whether form_data is editable or not""" + isEditable: Boolean - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """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 `archivedAt` field.""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A connection to a list of `ApplicationCommunityProgressReportData` values. -""" -type ApplicationCommunityProgressReportDataConnection { - """A list of `ApplicationCommunityProgressReportData` objects.""" - nodes: [ApplicationCommunityProgressReportData]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. - """ - edges: [ApplicationCommunityProgressReportDataEdge!]! + """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* `ApplicationCommunityProgressReportData` 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 + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! } -""" -Table containing the Community Progress Report data for the given application -""" -type ApplicationCommunityProgressReportData implements Node { +"""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! - """Unique ID for the Community Progress Report""" - rowId: Int! - - """ID of the application this Community Progress Report belongs to""" - applicationId: Int + """The name of the status type""" + name: String! - """ - The due date, date received and the file information of the Community Progress Report Excel file - """ - jsonData: JSON! + """The description of the status type""" + description: String - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """History operation""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! - """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `ApplicationCommunityProgressReportData` edge in the connection.""" -type ApplicationCommunityProgressReportDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `ApplicationCommunityProgressReportData` at the end of the edge.""" - node: ApplicationCommunityProgressReportData -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""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 in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -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 + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( + """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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [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: CcbcUserCondition - """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: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `ApplicationCommunityReportExcelData` values. -""" -type ApplicationCommunityReportExcelDataConnection { - """A list of `ApplicationCommunityReportExcelData` objects.""" - nodes: [ApplicationCommunityReportExcelData]! + """ + 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 `ApplicationCommunityReportExcelData` and cursor to aid in pagination. - """ - edges: [ApplicationCommunityReportExcelDataEdge!]! + """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* `ApplicationCommunityReportExcelData` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -Table containing the Community Report excel data for the given application -""" -type ApplicationCommunityReportExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Unique ID for the Community Report excel data""" - rowId: Int! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! - """ID of the application this Community Report belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataFormDataStatusTypeIdAndFormSchemaId( + """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 `Form`.""" + orderBy: [FormsOrderBy!] = [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: FormCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. - """ - applicationByApplicationId: Application +"""A connection to a list of `FormData` values.""" +type FormDataConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + A list of edges which contains the `FormData` and cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormDataEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationCommunityReportExcelData` edge in the connection.""" -type ApplicationCommunityReportExcelDataEdge { +"""A `FormData` edge in the connection.""" +type FormDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationCommunityReportExcelData` at the end of the edge.""" - node: ApplicationCommunityReportExcelData + """The `FormData` at the end of the edge.""" + node: FormData } -"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" -enum ApplicationCommunityReportExcelDataOrderBy { +"""Methods to use when ordering `FormData`.""" +enum FormDataOrderBy { NATURAL ID_ASC 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 @@ -40857,24 +41252,31 @@ enum ApplicationCommunityReportExcelDataOrderBy { 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 `ApplicationCommunityReportExcelData` object -types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `FormData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationCommunityReportExcelDataCondition { +input FormDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON + """Checks for equality with the object’s `lastEditedPage` field.""" + lastEditedPage: String + + """Checks for equality with the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: String + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -40892,987 +41294,966 @@ input ApplicationCommunityReportExcelDataCondition { """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 `ApplicationClaimsData` values.""" -type ApplicationClaimsDataConnection { - """A list of `ApplicationClaimsData` objects.""" - nodes: [ApplicationClaimsData]! +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationClaimsDataEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! """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 +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The claims form json data""" - jsonData: JSON! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """The id of the excel data that this record is associated with""" - excelDataId: Int + """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 - """Column to track if record was created, updated or deleted for history""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationClaimsData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { + """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 `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationClaimsData` edge in the connection.""" -type ApplicationClaimsDataEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationClaimsData` at the end of the edge.""" - node: ApplicationClaimsData -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""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 + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } """ -A condition to be used against `ApplicationClaimsData` 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 `FormData`. """ -input ApplicationClaimsDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - """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 `excelDataId` field.""" - excelDataId: Int + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ApplicationClaimsExcelData` values.""" -type ApplicationClaimsExcelDataConnection { - """A list of `ApplicationClaimsExcelData` objects.""" - nodes: [ApplicationClaimsExcelData]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ApplicationClaimsExcelData` and 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: [ApplicationClaimsExcelDataEdge!]! + edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationClaimsExcelData` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""Table containing the claims excel data for the given application""" -type ApplicationClaimsExcelData implements Node { +"""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! - """Unique ID for the claims excel data""" + """Primary key on form""" rowId: Int! - """ID of the application this data belongs to""" - applicationId: Int + """The end url for the form data""" + slug: String - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """The JSON schema for the respective form""" + jsonSchema: JSON! - """created by user id""" - createdBy: Int + """Description of the form""" + description: String - """created at timestamp""" - createdAt: Datetime! + """The type of form being stored""" + formType: String - """updated by user id""" - updatedBy: Int + """Reads a single `FormType` that is related to this `Form`.""" + formTypeByFormType: FormType - """updated at timestamp""" - updatedAt: Datetime! + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """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 `ApplicationClaimsExcelData`. - """ - applicationByApplicationId: Application + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition -"""A `ApplicationClaimsExcelData` edge in the connection.""" -type ApplicationClaimsExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! + + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The `ApplicationClaimsExcelData` at the end of the edge.""" - node: ApplicationClaimsExcelData -} + """Only read the last `n` values of the set.""" + last: Int -"""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 -} + """ + 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 `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 + """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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A connection to a list of `ApplicationMilestoneData` values.""" -type ApplicationMilestoneDataConnection { - """A list of `ApplicationMilestoneData` objects.""" - nodes: [ApplicationMilestoneData]! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. - """ - edges: [ApplicationMilestoneDataEdge!]! + """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* `ApplicationMilestoneData` 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 + ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! } -"""Table containing the milestone data for the given application""" -type ApplicationMilestoneData implements Node { +"""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! - """Unique id for the milestone""" - rowId: Int! - - """Id of the application the milestone belongs to""" - applicationId: Int + """Primary key and unique identifier of the type of form""" + name: String! - """The milestone form json data""" - jsonData: JSON! + """Description of the type of form""" + description: String - """The id of the excel data that this record is associated with""" - excelDataId: Int + """Reads and enables pagination through a set of `Form`.""" + formsByFormType( + """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 `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """History operation""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormsConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. - """ - applicationByApplicationId: Application +"""A connection to a list of `Form` values.""" +type FormsConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + A list of edges which contains the `Form` and cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormsEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationMilestoneData` edge in the connection.""" -type ApplicationMilestoneDataEdge { +"""A `Form` edge in the connection.""" +type FormsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneData` at the end of the edge.""" - node: ApplicationMilestoneData + """The `Form` at the end of the edge.""" + node: Form } -"""Methods to use when ordering `ApplicationMilestoneData`.""" -enum ApplicationMilestoneDataOrderBy { +"""Methods to use when ordering `Form`.""" +enum FormsOrderBy { 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 + 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 `ApplicationMilestoneData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneDataCondition { +input FormCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for equality with the object’s `slug` field.""" + slug: String - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Checks for equality with the object’s `jsonSchema` field.""" + jsonSchema: JSON - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `description` field.""" + description: String - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Checks for equality with the object’s `formType` field.""" + formType: String } -"""A connection to a list of `ApplicationMilestoneExcelData` values.""" -type ApplicationMilestoneExcelDataConnection { - """A list of `ApplicationMilestoneExcelData` objects.""" - nodes: [ApplicationMilestoneExcelData]! +""" +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 `ApplicationMilestoneExcelData` and cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationMilestoneExcelDataEdge!]! + edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. + The count of *all* `FormDataStatusType` 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! - - """Unique ID for the milestone 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 - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int +""" +A `FormDataStatusType` edge in the connection, with data from `FormData`. +""" +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationMilestoneExcelData` edge in the connection.""" -type ApplicationMilestoneExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """The `ApplicationMilestoneExcelData` at the end of the edge.""" - node: ApplicationMilestoneExcelData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" -enum ApplicationMilestoneExcelDataOrderBy { +"""Methods to use when ordering `FormDataStatusType`.""" +enum FormDataStatusTypesOrderBy { NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -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 `FormDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `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 +input FormDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `description` field.""" + description: String } -"""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 `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { + """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 `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationInternalDescriptionsEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! """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 `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { + """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 `FormData`.""" + formDataByCreatedBy( + """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationInternalDescription`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `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 `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationInternalDescription` at the end of the edge.""" - node: ApplicationInternalDescription -} - -"""Methods to use when ordering `ApplicationInternalDescription`.""" -enum ApplicationInternalDescriptionsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationInternalDescription` object types. -All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationInternalDescriptionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ApplicationProjectType` values.""" -type ApplicationProjectTypesConnection { - """A list of `ApplicationProjectType` objects.""" - nodes: [ApplicationProjectType]! +""" +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 `ApplicationProjectType` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationProjectTypesEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationProjectType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the project type of the application""" -type ApplicationProjectType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique ID for the application_project_type""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ID of the application this application_project_type belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Column containing the project type of the application""" - projectType: 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationProjectType`. - """ - applicationByApplicationId: Application +"""A `Form` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByCreatedBy: CcbcUser + """The `Form` at the end of the edge.""" + node: Form - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Only read the last `n` values of the set.""" + last: Int -"""A `ApplicationProjectType` edge in the connection.""" -type ApplicationProjectTypesEdge { - """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 `ApplicationProjectType` at the end of the edge.""" - node: ApplicationProjectType + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationProjectType`.""" -enum ApplicationProjectTypesOrderBy { +"""Methods to use when ordering `ApplicationFormData`.""" +enum ApplicationFormDataOrderBy { NATURAL - ID_ASC - ID_DESC + FORM_DATA_ID_ASC + FORM_DATA_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - PROJECT_TYPE_ASC - PROJECT_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationProjectType` object types. All fields +A condition to be used against `ApplicationFormData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationProjectTypeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationFormDataCondition { + """Checks for equality with the object’s `formDataId` field.""" + formDataId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int +} - """Checks for equality with the object’s `projectType` field.""" - projectType: String +""" +A connection to a list of `Application` values, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime +""" +A `Application` edge in the connection, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The `Application` at the end of the edge.""" + node: Application +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +"""A `ApplicationFormData` edge in the connection.""" +type ApplicationFormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationFormData` at the end of the edge.""" + node: ApplicationFormData } -"""A connection to a list of `Notification` values.""" -type NotificationsConnection { - """A list of `Notification` objects.""" - nodes: [Notification]! +"""A connection to a list of `ApplicationRfiData` values.""" +type ApplicationRfiDataConnection { + """A list of `ApplicationRfiData` objects.""" + nodes: [ApplicationRfiData]! """ - A list of edges which contains the `Notification` and cursor to aid in pagination. + A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. """ - edges: [NotificationsEdge!]! + edges: [ApplicationRfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Notification` you could get from the connection.""" + """ + The count of *all* `ApplicationRfiData` you could get from the connection. + """ totalCount: Int! } -"""Table containing list of application notifications""" -type Notification 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 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! + """The foreign key of a form""" + rfiDataId: Int! - """archived by user id""" - archivedBy: Int + """The foreign key of an application""" + applicationId: Int! - """archived at timestamp""" - archivedAt: Datetime + """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + rfiDataByRfiDataId: RfiData - """Reads a single `Application` that is related to this `Notification`.""" + """ + Reads a single `Application` that is related to this `ApplicationRfiData`. + """ 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 - - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByArchivedBy: CcbcUser } -"""Table containing list of application email_records""" -type EmailRecord implements Node { +"""Table to hold RFI form data""" +type RfiData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each email sent""" + """The unique id of the form data""" 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 + """Reference number assigned to the RFI""" + rfiNumber: String - """Additional data for the email""" + """ + The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + """ jsonData: JSON! + """Column referencing the form data status type, defaults to draft""" + rfiDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -41891,85 +42272,20 @@ type EmailRecord implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationEmailRecordIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByRfiDataId( """Only read the first `n` values of the set.""" first: Int @@ -41988,22 +42304,22 @@ 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 `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 - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( + """Computed column to return all attachement rows for an rfi_data row""" + attachments( """Only read the first `n` values of the set.""" first: Int @@ -42022,22 +42338,14 @@ 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] - - """ - 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 - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationRfiDataRfiDataIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -42056,118 +42364,36 @@ 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 `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 - ): 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: ApplicationFilter + ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - +"""The statuses applicable to an RFI""" +type RfiDataStatusType implements Node { """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + id: ID! -"""A `Application` edge in the connection, with data from `Notification`.""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """The name of the status type""" + name: String! - """The `Application` at the end of the edge.""" - node: Application + """The description of the status type""" + description: String - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -42186,50 +42412,22 @@ type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: RfiDataFilter + ): RfiDataConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42248,50 +42446,22 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42310,50 +42480,22 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42372,275 +42514,58 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""A `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 -} - -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! - - """ - A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. - """ - edges: [ApplicationPendingChangeRequestsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the pending change request details of the application""" -type ApplicationPendingChangeRequest implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_pending_change_request""" - rowId: Int! - - """ - ID of the application this application_pending_change_request belongs to - """ - applicationId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest -} - -"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" -enum ApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationPendingChangeRequest` object types. -All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `ApplicationAnnounced` values.""" -type ApplicationAnnouncedsConnection { - """A list of `ApplicationAnnounced` objects.""" - nodes: [ApplicationAnnounced]! +"""A connection to a list of `RfiData` values.""" +type RfiDataConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! """ - A list of edges which contains the `ApplicationAnnounced` and cursor to aid in pagination. + A list of edges which contains the `RfiData` and cursor to aid in pagination. """ - edges: [ApplicationAnnouncedsEdge!]! + edges: [RfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationAnnounced` you could get from the connection. - """ + """The count of *all* `RfiData` you could get from the connection.""" totalCount: Int! } -"""Table containing if the application has been announced by BC or ISED""" -type ApplicationAnnounced 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_announced""" - rowId: Int! - - """ID of the application this record belongs to""" - applicationId: Int - - """Whether the application has been announced by BC or ISED""" - announced: Boolean - - """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 `ApplicationAnnounced`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationAnnounced` edge in the connection.""" -type ApplicationAnnouncedsEdge { +"""A `RfiData` edge in the connection.""" +type RfiDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnnounced` at the end of the edge.""" - node: ApplicationAnnounced + """The `RfiData` at the end of the edge.""" + node: RfiData } -"""Methods to use when ordering `ApplicationAnnounced`.""" -enum ApplicationAnnouncedsOrderBy { +"""Methods to use when ordering `RfiData`.""" +enum RfiDataOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ANNOUNCED_ASC - ANNOUNCED_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 @@ -42658,18 +42583,20 @@ enum ApplicationAnnouncedsOrderBy { } """ -A condition to be used against `ApplicationAnnounced` 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 ApplicationAnnouncedCondition { +input RfiDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `rfiNumber` field.""" + rfiNumber: String - """Checks for equality with the object’s `announced` field.""" - announced: Boolean + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -42690,186 +42617,33 @@ input ApplicationAnnouncedCondition { archivedAt: Datetime } -"""A connection to a list of `Announcement` values.""" -type AnnouncementsConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! - - """ - A list of edges which contains the `Announcement` and cursor to aid in pagination. - """ - edges: [AnnouncementsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Announcement` you could get from the connection.""" - totalCount: Int! -} - -"""A `Announcement` edge in the connection.""" -type AnnouncementsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Announcement` at the end of the edge.""" - node: Announcement -} - -"""A connection to a list of `HistoryItem` values.""" -type HistoryItemsConnection { - """A list of `HistoryItem` objects.""" - nodes: [HistoryItem]! - - """ - A list of edges which contains the `HistoryItem` and cursor to aid in pagination. - """ - edges: [HistoryItemsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `HistoryItem` you could get from the connection.""" - totalCount: Int! -} - -""" -This is a type used to return records of history data in the application_history computed column -""" -type HistoryItem { - """Application Id.""" - applicationId: Int - - """Timestamp of the operation recorded.""" - createdAt: Datetime - - """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" - op: Operation - - """Table name.""" - tableName: String - - """ - Identifier that uniquely identifies a record by primary key [primary key + table_oid]. - """ - recordId: UUID - - """New record in Json format.""" - record: JSON - - """Old record in Json format.""" - oldRecord: JSON - - """ - Main object affected by the operation (i.e. status, or file name or RFI type). - """ - item: String - - """First Name of the user who performed the operation.""" - familyName: String - - """Last Name of the user who performed the operation.""" - givenName: String - - """Session sub of the user who performed the operation.""" - sessionSub: String - - """User is an external analyst""" - externalAnalyst: Boolean -} - -"""A `HistoryItem` edge in the connection.""" -type HistoryItemsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `HistoryItem` at the end of the edge.""" - node: HistoryItem -} - -""" -A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ -""" -input HistoryItemFilter { - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `op` field.""" - op: OperationFilter - - """Filter by the object’s `tableName` field.""" - tableName: StringFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter - - """Filter by the object’s `record` field.""" - record: JSONFilter - - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter - - """Filter by the object’s `item` field.""" - item: StringFilter - - """Filter by the object’s `familyName` field.""" - familyName: StringFilter - - """Filter by the object’s `givenName` field.""" - givenName: StringFilter - - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter - - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter - - """Checks for all expressions in this list.""" - and: [HistoryItemFilter!] - - """Checks for any expressions in this list.""" - or: [HistoryItemFilter!] - - """Negates the expression.""" - not: HistoryItemFilter -} - -""" -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. -""" -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +"""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 `ApplicationStatusType`, 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: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! """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`. -""" -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { """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 `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42888,70 +42662,30 @@ 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 `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! -} - -"""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: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { +"""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: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42960,18 +42694,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { +"""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`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42990,32 +42722,30 @@ 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 `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 ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { +"""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: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43024,18 +42754,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { +"""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`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43054,242 +42782,261 @@ 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 `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! +} + +"""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 connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A condition to be used against `ApplicationRfiData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +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 `CcbcUser`, info from the `ApplicationStatus`, and the 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: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationRfiData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application +} - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A `ApplicationRfiData` edge in the connection.""" +type ApplicationRfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `ApplicationRfiData` at the end of the edge.""" + node: ApplicationRfiData +} - """ - 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 `Announcement` values.""" +type AnnouncementsConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `Announcement` and cursor to aid in pagination. + """ + edges: [AnnouncementsEdge!]! - """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 `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `Announcement` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition +"""A `Announcement` edge in the connection.""" +type AnnouncementsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """The `Announcement` at the end of the edge.""" + node: Announcement } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `HistoryItem` values.""" +type HistoryItemsConnection { + """A list of `HistoryItem` objects.""" + nodes: [HistoryItem]! """ - 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 `HistoryItem` and cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! + edges: [HistoryItemsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `HistoryItem` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +This is a type used to return records of history data in the application_history computed column """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +type HistoryItem { + """Application Id.""" + applicationId: Int - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """Timestamp of the operation recorded.""" + createdAt: Datetime - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" + op: Operation - """Only read the last `n` values of the set.""" - last: Int + """Table name.""" + tableName: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Identifier that uniquely identifies a record by primary key [primary key + table_oid]. + """ + recordId: UUID - """Read all values in the set before (above) this cursor.""" - before: Cursor + """New record in Json format.""" + record: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Old record in Json format.""" + oldRecord: JSON - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """ + Main object affected by the operation (i.e. status, or file name or RFI type). + """ + item: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """First Name of the user who performed the operation.""" + familyName: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Last Name of the user who performed the operation.""" + givenName: String + + """Session sub of the user who performed the operation.""" + sessionSub: String + + """User is an external analyst""" + externalAnalyst: Boolean +} + +"""A `HistoryItem` edge in the connection.""" +type HistoryItemsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `HistoryItem` at the end of the edge.""" + node: HistoryItem } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +input HistoryItemFilter { + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `op` field.""" + op: OperationFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Filter by the object’s `tableName` field.""" + tableName: StringFilter -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `record` field.""" + record: JSONFilter - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `item` field.""" + item: 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 `givenName` field.""" + givenName: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for all expressions in this list.""" + and: [HistoryItemFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """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 `Attachment`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - 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 `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -43308,32 +43055,55 @@ 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 `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! +} + +"""Methods to use when ordering `AssessmentType`.""" +enum AssessmentTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A condition to be used against `AssessmentType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { +input AssessmentTypeCondition { + """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 `AssessmentData`. +""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { """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: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43342,16 +43112,16 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnect totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43370,84 +43140,50 @@ 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 `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! -} - -""" -A connection to a list of `FormData` values, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! - - """ - A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! -} - -""" -A `FormData` edge in the connection, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `FormData` at the end of the edge.""" - node: FormData + filter: 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 ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { + """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: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! """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 ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { """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 @@ -43466,99 +43202,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 `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! -} - -"""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: 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 ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { """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: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43567,20 +43236,16 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 @@ -43599,32 +43264,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 `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 `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43634,9 +43299,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43644,9 +43309,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationAnalystLeadsByUpdatedBy( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43665,32 +43330,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43700,9 +43365,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43710,9 +43375,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationAnalystLeadsByArchivedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43731,82 +43396,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { + """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! """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 `ConditionalApprovalData`. """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { """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 `ConditionalApprovalData`. """ - 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( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43825,55 +43462,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 `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! -} - -"""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: 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 `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43882,16 +43496,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 `ApplicationGisAssessmentHh`. +""" +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43910,32 +43528,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43944,16 +43562,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 `ApplicationGisAssessmentHh`. +""" +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43972,32 +43594,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44006,16 +43628,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 `ApplicationGisAssessmentHh`. +""" +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44034,52 +43660,52 @@ 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - 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 `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! """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 `ApplicationPackage`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { """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 `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -44098,32 +43724,84 @@ 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 `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! +} + +"""Methods to use when ordering `GisData`.""" +enum GisDataOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { +input GisDataCondition { + """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 `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 `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { """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: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44133,17 +43811,17 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { """A cursor 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`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44162,32 +43840,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 `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 ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { """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: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44197,17 +43875,17 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44226,32 +43904,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 `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 `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { """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: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44261,19 +43939,17 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 @@ -44292,32 +43968,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 `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 `ProjectInformationData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44327,9 +44003,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44337,9 +44013,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - conditionalApprovalDataByUpdatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44358,32 +44034,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44393,9 +44069,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44403,9 +44079,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - conditionalApprovalDataByArchivedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44424,52 +44100,54 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44488,84 +44166,32 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -"""Methods to use when ordering `GisData`.""" -enum GisDataOrderBy { - NATURAL - ID_ASC - 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 `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input GisDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: 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 + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44575,17 +44201,17 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44604,32 +44230,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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44639,17 +44265,17 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44668,32 +44294,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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44703,17 +44329,17 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44732,146 +44358,96 @@ 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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { + """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! """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 `ApplicationClaimsData`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { """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 - - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - 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 + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( + """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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [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: ApplicationClaimsDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44881,19 +44457,17 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { +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 `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44912,32 +44486,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44947,19 +44521,17 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { +type 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 `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44978,32 +44550,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45013,9 +44585,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45023,9 +44595,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnnouncementsByArchivedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45044,32 +44616,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45079,9 +44651,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45089,9 +44661,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45110,32 +44682,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa """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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45145,9 +44717,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45155,9 +44727,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45176,32 +44748,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa """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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45211,9 +44783,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45221,9 +44793,9 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45242,32 +44814,34 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM """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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45277,17 +44851,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45306,32 +44882,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45341,17 +44919,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +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 `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45370,32 +44950,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45405,17 +44987,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45434,32 +45018,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45469,9 +45053,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45479,9 +45063,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - projectInformationDataByCreatedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45500,32 +45084,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45535,9 +45119,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45545,9 +45129,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - projectInformationDataByUpdatedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45566,32 +45150,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45601,9 +45185,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45611,9 +45195,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - projectInformationDataByArchivedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45632,32 +45216,32 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45667,17 +45251,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45696,32 +45282,32 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45731,17 +45317,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45760,32 +45348,32 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45795,17 +45383,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45824,32 +45414,32 @@ 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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45859,9 +45449,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45869,9 +45459,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45890,34 +45480,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45927,9 +45515,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45937,9 +45525,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45958,34 +45546,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45995,9 +45581,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46005,9 +45591,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46026,34 +45612,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46063,9 +45647,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46073,9 +45657,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46094,32 +45678,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46129,9 +45713,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46139,9 +45723,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46160,32 +45744,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46195,19 +45779,17 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46226,32 +45808,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46261,17 +45843,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { +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 `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46290,32 +45872,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46325,17 +45907,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46354,32 +45936,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46389,17 +45971,17 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46418,32 +46000,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46453,19 +46035,17 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { +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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46484,32 +46064,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46519,19 +46099,17 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { +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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46550,54 +46128,50 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, 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: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -46616,32 +46190,110 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: NotificationFilter + ): NotificationsConnection! +} + +"""Methods to use when ordering `EmailRecord`.""" +enum EmailRecordsOrderBy { + NATURAL + ID_ASC + ID_DESC + TO_EMAIL_ASC + TO_EMAIL_DESC + CC_EMAIL_ASC + CC_EMAIL_DESC + SUBJECT_ASC + SUBJECT_DESC + BODY_ASC + BODY_DESC + MESSAGE_ID_ASC + MESSAGE_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A condition to be used against `EmailRecord` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { +input EmailRecordCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `toEmail` field.""" + toEmail: String + + """Checks for equality with the object’s `ccEmail` field.""" + ccEmail: String + + """Checks for equality with the object’s `subject` field.""" + subject: String + + """Checks for equality with the object’s `body` field.""" + body: String + + """Checks for equality with the object’s `messageId` field.""" + messageId: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, 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: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46650,20 +46302,16 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { +"""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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46682,32 +46330,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46716,20 +46364,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 `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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46748,32 +46392,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46782,20 +46426,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 `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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46814,32 +46454,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46849,19 +46489,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46880,32 +46518,32 @@ 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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46915,19 +46553,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46946,32 +46582,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46981,19 +46617,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47012,32 +46646,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47047,9 +46681,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47057,9 +46691,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationInternalDescriptionsByCreatedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47078,32 +46712,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47113,9 +46747,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47123,9 +46757,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47144,32 +46778,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47179,9 +46813,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47189,9 +46823,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationInternalDescriptionsByArchivedBy( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47210,19 +46844,19 @@ 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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ @@ -47424,174 +47058,38 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - 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 `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! + edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} - -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord - - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""Methods to use when ordering `EmailRecord`.""" -enum EmailRecordsOrderBy { - NATURAL - ID_ASC - ID_DESC - TO_EMAIL_ASC - TO_EMAIL_DESC - CC_EMAIL_ASC - CC_EMAIL_DESC - SUBJECT_ASC - SUBJECT_DESC - BODY_ASC - BODY_DESC - MESSAGE_ID_ASC - MESSAGE_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `EmailRecord` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input EmailRecordCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `toEmail` field.""" - toEmail: String - - """Checks for equality with the object’s `ccEmail` field.""" - ccEmail: String - - """Checks for equality with the object’s `subject` field.""" - subject: String - - """Checks for equality with the object’s `body` field.""" - body: String - - """Checks for equality with the object’s `messageId` field.""" - messageId: String - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + The count of *all* `ApplicationStatus` you could get from the connection. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { +""" +A `ApplicationStatus` edge in the connection, with data from `Attachment`. +""" +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -47610,32 +47108,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47644,16 +47142,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 `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47672,32 +47170,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47706,16 +47204,16 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type 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 `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47734,32 +47232,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47768,20 +47266,16 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47800,54 +47294,54 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -47866,98 +47360,99 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! +"""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 `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +input AnalystCondition { + """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 `givenName` field.""" + givenName: String - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `familyName` field.""" + familyName: 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 `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! + """Checks for equality with the object’s `active` field.""" + active: Boolean + + """Checks for equality with the object’s `email` field.""" + email: String } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47967,17 +47462,19 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47996,32 +47493,32 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48031,17 +47528,19 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48060,32 +47559,32 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48095,17 +47594,19 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48124,41 +47625,146 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A `Application` edge in the connection.""" -type ApplicationsEdge { +""" +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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Announcement` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean + + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String +} + +"""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 connection to a list of `CcbcUser` values, with data from `Application`. +A condition to be used against `Announcement` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { +input AnnouncementCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `ccbcNumbers` field.""" + ccbcNumbers: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `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 `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48167,16 +47773,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48195,32 +47805,32 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48229,16 +47839,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `Application`.""" - applicationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48257,32 +47871,32 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48291,16 +47905,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `Application`.""" - applicationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48319,238 +47937,427 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A `Intake` edge in the connection.""" -type IntakesEdge { +""" +A connection to a list of `FormData` values, with data from `ApplicationFormData`. +""" +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! + + """ + A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `FormData` edge in the connection, with data from `ApplicationFormData`. +""" +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `FormData` at the end of the edge.""" + node: FormData } -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! +""" +A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. + A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. """ - edges: [RecordVersionsEdge!]! + edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `RecordVersion` you could get from the connection.""" + """The count of *all* `RfiData` you could get from the connection.""" totalCount: Int! } """ -Table for tracking history records on tables that auditing is enabled on +A `RfiData` edge in the connection, with data from `ApplicationRfiData`. """ -type RecordVersion implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Primary key and unique identifier""" - rowId: BigInt! + """The `RfiData` at the end of the edge.""" + node: RfiData +} - """The id of the record the history record is associated with""" - recordId: UUID +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - The id of the previous version of the record the history record is associated with + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - oldRecordId: UUID + edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! - """The operation performed on the record (created, updated, deleted)""" - op: Operation! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The timestamp of the history record""" - ts: Datetime! + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ + totalCount: Int! +} - """The oid of the table the record is associated with""" - tableOid: BigFloat! +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The schema of the table the record is associated with""" - tableSchema: String! + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """The name of the table the record is associated with""" - tableName: String! + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( + """Only read the first `n` values of the set.""" + first: Int - """The user that created the record""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """The timestamp of when the record was created""" - 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 - """The record in JSON format""" - record: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The previous version of the record in JSON format""" - oldRecord: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser -} + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """The `RecordVersion` at the end of the edge.""" - node: RecordVersion + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""Methods to use when ordering `RecordVersion`.""" -enum RecordVersionsOrderBy { +"""Methods to use when ordering `ApplicationStatusType`.""" +enum ApplicationStatusTypesOrderBy { 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 + 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 `RecordVersion` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationStatusType` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `visibleByApplicant` field.""" + visibleByApplicant: Boolean + + """Checks for equality with the object’s `statusOrder` field.""" + statusOrder: Int + + """Checks for equality with the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: Boolean +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -input RecordVersionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: BigInt +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `recordId` field.""" - recordId: UUID + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! - """Checks for equality with the object’s `oldRecordId` field.""" - oldRecordId: UUID + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `op` field.""" - op: Operation + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `ts` field.""" - ts: Datetime +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `tableOid` field.""" - tableOid: BigFloat + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `tableSchema` field.""" - tableSchema: String + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `tableName` field.""" - tableName: 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 `record` field.""" - record: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON + """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! } -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +""" +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 `GisData` and 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: [GisDataEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `GisData` edge in the connection.""" -type GisDataEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CbcProject` values.""" -type CbcProjectsConnection { - """A list of `CbcProject` objects.""" - nodes: [CbcProject]! +"""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 `CbcApplicationPendingChangeRequest` values.""" +type CbcApplicationPendingChangeRequestsConnection { + """A list of `CbcApplicationPendingChangeRequest` objects.""" + nodes: [CbcApplicationPendingChangeRequest]! """ - A list of edges which contains the `CbcProject` and cursor to aid in pagination. + A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. """ - edges: [CbcProjectsEdge!]! + edges: [CbcApplicationPendingChangeRequestsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcProject` you could get from the connection.""" + """ + The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. + """ totalCount: Int! } -"""Table containing the data imported from the CBC projects excel file""" -type CbcProject implements Node { +"""Table containing the pending change request details of the application""" +type CbcApplicationPendingChangeRequest 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""" + """Unique ID for the cbc_application_pending_change_request""" rowId: Int! - """The data imported from the excel for that cbc project""" - jsonData: JSON! + """ + ID of the cbc application this cbc_application_pending_change_request belongs to + """ + cbcId: Int - """The timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String """created by user id""" createdBy: Int @@ -48570,124 +48377,25 @@ type CbcProject implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcProject` edge in the connection.""" -type CbcProjectsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """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 - - """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 `EmailRecord` values.""" -type EmailRecordsConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! - """ - A list of edges which contains the `EmailRecord` and cursor to aid in pagination. + Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. """ - edges: [EmailRecordsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} - -"""A `EmailRecord` edge in the connection.""" -type EmailRecordsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord -} - -"""A connection to a list of `Cbc` values.""" -type CbcsConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! + cbcByCbcId: Cbc """ - A list of edges which contains the `Cbc` and cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. """ - edges: [CbcsEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `Cbc` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser } """ @@ -48735,8 +48443,10 @@ type Cbc implements Node { """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48755,22 +48465,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48803,10 +48513,8 @@ type Cbc implements Node { filter: CbcDataFilter ): CbcDataConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -48825,19 +48533,19 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `CbcProjectCommunity`.""" cbcProjectCommunitiesByCbcId( @@ -48873,8 +48581,8 @@ type Cbc implements Node { filter: CbcProjectCommunityFilter ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCbcIdAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48893,22 +48601,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48939,10 +48647,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48973,10 +48681,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCbcIdAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -48995,22 +48703,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataProjectNumberAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49029,22 +48737,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndCreatedBy( + ccbcUsersByCbcDataCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49075,10 +48783,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndUpdatedBy( + ccbcUsersByCbcDataCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49109,10 +48817,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataProjectNumberAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -49131,22 +48839,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( + ccbcUsersByCbcDataProjectNumberAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49177,10 +48885,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49211,10 +48919,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( + ccbcUsersByCbcDataProjectNumberAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49245,7 +48953,7 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" communitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataId( @@ -49384,6 +49092,69 @@ type Cbc implements Node { ): CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection! } +"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" +enum CbcApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcApplicationPendingChangeRequest` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `CbcData` values.""" type CbcDataConnection { """A list of `CbcData` objects.""" @@ -49998,159 +49769,6 @@ input CbcDataCondition { archivedAt: Datetime } -"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" -type CbcApplicationPendingChangeRequestsConnection { - """A list of `CbcApplicationPendingChangeRequest` objects.""" - nodes: [CbcApplicationPendingChangeRequest]! - - """ - A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. - """ - edges: [CbcApplicationPendingChangeRequestsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the pending change request details of the application""" -type CbcApplicationPendingChangeRequest implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the cbc_application_pending_change_request""" - rowId: Int! - - """ - ID of the cbc application this cbc_application_pending_change_request belongs to - """ - cbcId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. - """ - cbcByCbcId: Cbc - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" -type CbcApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" - node: CbcApplicationPendingChangeRequest -} - -"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" -enum CbcApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - CBC_ID_ASC - CBC_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcApplicationPendingChangeRequest` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `cbcId` field.""" - cbcId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - """A connection to a list of `CbcProjectCommunity` values.""" type CbcProjectCommunitiesConnection { """A list of `CbcProjectCommunity` objects.""" @@ -50846,6 +50464,204 @@ type CbcProjectCommunitiesEdge { node: CbcProjectCommunity } +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! + + """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 `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! + + """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 `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! + + """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 `CbcApplicationPendingChangeRequest`. +""" +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! +} + """A connection to a list of `Cbc` values, with data from `CbcData`.""" type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { """A list of `Cbc` objects.""" @@ -51327,38 +51143,38 @@ type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! + edges: [CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { +type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -51377,32 +51193,120 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! +} + +"""Methods to use when ordering `CommunitiesSourceData`.""" +enum CommunitiesSourceDataOrderBy { + NATURAL + ID_ASC + ID_DESC + GEOGRAPHIC_NAME_ID_ASC + GEOGRAPHIC_NAME_ID_DESC + BC_GEOGRAPHIC_NAME_ASC + BC_GEOGRAPHIC_NAME_DESC + GEOGRAPHIC_TYPE_ASC + GEOGRAPHIC_TYPE_DESC + REGIONAL_DISTRICT_ASC + REGIONAL_DISTRICT_DESC + ECONOMIC_REGION_ASC + ECONOMIC_REGION_DESC + LATITUDE_ASC + LATITUDE_DESC + LONGITUDE_ASC + LONGITUDE_DESC + MAP_LINK_ASC + MAP_LINK_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 `CbcApplicationPendingChangeRequest`. +A condition to be used against `CommunitiesSourceData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { +input CommunitiesSourceDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `geographicNameId` field.""" + geographicNameId: Int + + """Checks for equality with the object’s `bcGeographicName` field.""" + bcGeographicName: String + + """Checks for equality with the object’s `geographicType` field.""" + geographicType: String + + """Checks for equality with the object’s `regionalDistrict` field.""" + regionalDistrict: String + + """Checks for equality with the object’s `economicRegion` field.""" + economicRegion: String + + """Checks for equality with the object’s `latitude` field.""" + latitude: Float + + """Checks for equality with the object’s `longitude` field.""" + longitude: Float + + """Checks for equality with the object’s `mapLink` field.""" + mapLink: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51412,19 +51316,17 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51443,32 +51345,32 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51478,19 +51380,17 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51509,54 +51409,52 @@ type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } """ -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. """ -type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. """ -type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge { +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51590,27 +51488,94 @@ type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataI ): CbcProjectCommunitiesConnection! } -"""Methods to use when ordering `CommunitiesSourceData`.""" -enum CommunitiesSourceDataOrderBy { +"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" +type CbcApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" + node: CbcApplicationPendingChangeRequest +} + +"""A connection to a list of `CbcProject` values.""" +type CbcProjectsConnection { + """A list of `CbcProject` objects.""" + nodes: [CbcProject]! + + """ + A list of edges which contains the `CbcProject` and cursor to aid in pagination. + """ + edges: [CbcProjectsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CbcProject` you could get from the connection.""" + totalCount: Int! +} + +"""Table containing the data imported from the CBC projects excel file""" +type CbcProject implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the row""" + rowId: Int! + + """The data imported from the excel for that cbc project""" + jsonData: JSON! + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """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 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 - GEOGRAPHIC_NAME_ID_ASC - GEOGRAPHIC_NAME_ID_DESC - BC_GEOGRAPHIC_NAME_ASC - BC_GEOGRAPHIC_NAME_DESC - GEOGRAPHIC_TYPE_ASC - GEOGRAPHIC_TYPE_DESC - REGIONAL_DISTRICT_ASC - REGIONAL_DISTRICT_DESC - ECONOMIC_REGION_ASC - ECONOMIC_REGION_DESC - LATITUDE_ASC - LATITUDE_DESC - LONGITUDE_ASC - LONGITUDE_DESC - MAP_LINK_ASC - MAP_LINK_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -51628,36 +51593,18 @@ enum CommunitiesSourceDataOrderBy { } """ -A condition to be used against `CommunitiesSourceData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input CommunitiesSourceDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `geographicNameId` field.""" - geographicNameId: Int - - """Checks for equality with the object’s `bcGeographicName` field.""" - bcGeographicName: String - - """Checks for equality with the object’s `geographicType` field.""" - geographicType: String - - """Checks for equality with the object’s `regionalDistrict` field.""" - regionalDistrict: String - - """Checks for equality with the object’s `economicRegion` field.""" - economicRegion: String - - """Checks for equality with the object’s `latitude` field.""" - latitude: Float +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 `longitude` field.""" - longitude: Float + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Checks for equality with the object’s `mapLink` field.""" - mapLink: String + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -51678,17 +51625,15 @@ input CommunitiesSourceDataCondition { archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values.""" +type CcbcUsersConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge!]! + edges: [CcbcUsersEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51697,214 +51642,269 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyConnection { totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection.""" +type CcbcUsersEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser +} - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `GisData` and cursor to aid in pagination. + """ + edges: [GisDataEdge!]! - """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 `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `GisData` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcProjectCommunityCondition +"""A `GisData` edge in the connection.""" +type GisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + """The `GisData` at the end of the edge.""" + node: GisData } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyConnection { - """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 `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge!]! + 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 `CbcProjectCommunity`. -""" -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection.""" +type CbcsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc +} - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A connection to a list of `CommunitiesSourceData` values.""" +type CommunitiesSourceDataConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! - """Only read the last `n` values of the set.""" - last: Int + """ + A list of edges which contains the `CommunitiesSourceData` and cursor to aid in pagination. + """ + edges: [CommunitiesSourceDataEdge!]! - """ - 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* `CommunitiesSourceData` you could get from the connection. + """ + totalCount: Int! +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A `CommunitiesSourceData` edge in the connection.""" +type CommunitiesSourceDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcProjectCommunityCondition +"""A connection to a list of `EmailRecord` values.""" +type EmailRecordsConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + """ + A list of edges which contains the `EmailRecord` and cursor to aid in pagination. + """ + edges: [EmailRecordsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `EmailRecord` you could get from the connection.""" + totalCount: Int! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A `EmailRecord` edge in the connection.""" +type EmailRecordsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord +} + +"""A connection to a list of `RecordVersion` values.""" +type RecordVersionsConnection { + """A list of `RecordVersion` objects.""" + nodes: [RecordVersion]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge!]! + edges: [RecordVersionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `RecordVersion` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +Table for tracking history records on tables that auditing is enabled on """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Primary key and unique identifier""" + rowId: BigInt! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """The id of the record the history record is associated with""" + recordId: UUID - """Only read the last `n` values of the set.""" - last: Int + """ + The id of the previous version of the record the history record is associated with + """ + oldRecordId: UUID - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The operation performed on the record (created, updated, deleted)""" + op: Operation! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The timestamp of the history record""" + ts: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """The oid of the table the record is associated with""" + tableOid: BigFloat! - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The schema of the table the record is associated with""" + tableSchema: String! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcProjectCommunityCondition + """The name of the table the record is associated with""" + tableName: String! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + """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 `Cbc` edge in the connection.""" -type CbcsEdge { +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion } -"""A connection to a list of `CommunitiesSourceData` values.""" -type CommunitiesSourceDataConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +"""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 list of edges which contains the `CommunitiesSourceData` and cursor to aid in pagination. - """ - edges: [CommunitiesSourceDataEdge!]! +""" +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 - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ - totalCount: Int! -} + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID -"""A `CommunitiesSourceData` edge in the connection.""" -type CommunitiesSourceDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `op` field.""" + op: Operation - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """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 `ReportingGcpe` values.""" @@ -52030,96 +52030,34 @@ input ReportingGcpeCondition { } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUsersConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { - """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 `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [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 `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { +"""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 `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52138,32 +52076,32 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52172,16 +52110,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52200,32 +52138,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 CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52234,16 +52172,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 CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52262,50 +52200,50 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52324,32 +52262,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { +type 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: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52358,16 +52296,16 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type 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 @@ -52386,30 +52324,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52418,16 +52358,16 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type 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 `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52446,48 +52386,50 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Intake` values, with data from `Application`. +""" +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - 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 `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! + 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 `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { +"""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 `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52506,50 +52448,50 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { + """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! """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 `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """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 `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52568,53 +52510,32 @@ type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `GaplessCounter`.""" -enum GaplessCountersOrderBy { - NATURAL - ID_ASC - ID_DESC - COUNTER_ASC - COUNTER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A condition to be used against `GaplessCounter` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `Application`. """ -input GaplessCounterCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `counter` field.""" - counter: Int -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52623,16 +52544,16 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52651,48 +52572,52 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52711,50 +52636,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -52773,30 +52700,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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52805,16 +52734,16 @@ 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 `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52833,30 +52762,32 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52865,16 +52796,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52893,50 +52824,52 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52955,50 +52888,52 @@ type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - 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 `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -53017,32 +52952,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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53051,16 +52986,16 @@ 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 `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53079,32 +53014,32 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53113,16 +53048,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type 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 `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53141,50 +53076,52 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53203,50 +53140,52 @@ type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -53265,32 +53204,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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53299,16 +53238,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 `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53327,50 +53266,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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53389,32 +53328,32 @@ type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53423,16 +53362,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53451,32 +53390,32 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53485,16 +53424,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53513,52 +53452,50 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53577,54 +53514,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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """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`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """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 `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53643,32 +53576,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53677,18 +53610,16 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53707,32 +53638,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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53741,18 +53672,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 `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 `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53771,32 +53700,32 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53806,17 +53735,19 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53835,54 +53766,54 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53901,32 +53832,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53936,17 +53867,19 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53965,52 +53898,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [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 `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54029,52 +53964,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54093,54 +54030,54 @@ type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54159,52 +54096,54 @@ type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54223,32 +54162,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54258,17 +54197,19 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54287,50 +54228,54 @@ 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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { + """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """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 `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54349,54 +54294,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -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 CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { + """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: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! """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 CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { """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 @@ -54415,32 +54360,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 CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54449,16 +54394,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 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 `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54477,32 +54422,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 CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54511,16 +54456,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 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 `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54539,50 +54484,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 CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { + """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: [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 `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +"""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 `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -54601,54 +54544,54 @@ 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`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { + """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: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! """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 CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { """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 @@ -54667,32 +54610,32 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54701,16 +54644,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 `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54729,32 +54672,32 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54763,16 +54706,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type 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 `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54791,50 +54734,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 `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 CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """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: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + 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 CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +"""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 @@ -54853,54 +54794,54 @@ type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """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: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + 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 CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +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 @@ -54919,32 +54860,32 @@ type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { +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: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54953,16 +54894,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 `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`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54981,32 +54922,32 @@ 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 `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 CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { +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: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55015,16 +54956,16 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +"""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`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55043,54 +54984,114 @@ 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 `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 `FormDataStatusType` values, with data from `FormData`. -""" -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +"""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 `FormDataStatusType`, info from the `FormData`, 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: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! """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, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { + """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 + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + """ - The count of *all* `FormDataStatusType` you could get from the connection. + A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55109,32 +55110,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55143,16 +55144,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 `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55171,32 +55176,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55205,16 +55210,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 `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55233,48 +55242,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } -"""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 `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55293,54 +55308,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55359,32 +55374,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55393,16 +55408,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 `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55421,50 +55440,54 @@ 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! """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 CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { """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`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55483,48 +55506,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } -"""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 `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +""" +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { """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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55543,54 +55572,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55609,50 +55638,52 @@ 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -55671,50 +55702,52 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { - """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 `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: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! + 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 `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55733,48 +55766,52 @@ 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 `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 CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `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: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """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 `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55793,30 +55830,32 @@ type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, 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: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55825,16 +55864,18 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55853,48 +55894,52 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `GisData` values, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - 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 `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + 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 `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -55913,48 +55958,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, 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: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + 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 `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +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 `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55973,30 +56022,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56005,16 +56056,18 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56033,30 +56086,32 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""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 `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56065,16 +56120,18 @@ 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 `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56093,48 +56150,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `GisData` values, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, 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: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + 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 `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -56153,32 +56214,32 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - 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 `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56188,19 +56249,17 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56219,54 +56278,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { + """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """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 `ApplicationGisData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """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 `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56285,32 +56342,32 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56320,19 +56377,17 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56351,54 +56406,54 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, 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: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByArchivedBy( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56417,54 +56472,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByApplicationId( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56483,54 +56538,54 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { + """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """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 `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """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 `ProjectInformationData`. """ - applicationAnalystLeadsByAnalystId( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56549,54 +56604,54 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { + """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByCreatedBy( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56615,32 +56670,32 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56650,9 +56705,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56660,9 +56715,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByArchivedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56681,54 +56736,54 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByApplicationId( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56747,54 +56802,54 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - 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 `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByAnalystId( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56813,32 +56868,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56848,9 +56903,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56858,9 +56913,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByCreatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56879,32 +56934,32 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56914,9 +56969,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56924,9 +56979,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByUpdatedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56945,19 +57000,19 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ @@ -57541,37 +57596,33 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { ): RfiDataConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `AssessmentData`, 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: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! """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 CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """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 `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57590,52 +57641,48 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +"""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 `AssessmentType`, info from the `AssessmentData`, 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: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! """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`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """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 `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57654,50 +57701,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! """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 `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """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 `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -57716,32 +57763,53 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! +} + +"""Methods to use when ordering `GaplessCounter`.""" +enum GaplessCountersOrderBy { + NATURAL + ID_ASC + ID_DESC + COUNTER_ASC + COUNTER_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A condition to be used against `GaplessCounter` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { +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]! """ - 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 `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57750,16 +57818,16 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +"""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 `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57778,52 +57846,48 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `AssessmentData`, 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: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! """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 CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """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 `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57842,52 +57906,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -57906,32 +57968,30 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `AssessmentData`, 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: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57940,16 +58000,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +"""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 `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57968,32 +58028,30 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +"""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 `AssessmentData`, 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: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58002,16 +58060,16 @@ 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 `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 `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58030,52 +58088,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -58094,52 +58150,52 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationAnnounced`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58158,32 +58214,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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58192,16 +58248,18 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58220,32 +58278,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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58254,16 +58312,18 @@ 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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58282,32 +58342,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58317,17 +58377,17 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58346,32 +58406,32 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58381,17 +58441,17 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58410,32 +58470,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58445,17 +58505,17 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58474,32 +58534,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58509,17 +58569,17 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58538,32 +58598,32 @@ 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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58573,17 +58633,17 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58602,32 +58662,32 @@ 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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58637,17 +58697,17 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58666,32 +58726,32 @@ 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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58701,17 +58761,17 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58730,32 +58790,32 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58765,17 +58825,17 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58794,32 +58854,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58829,17 +58889,17 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58858,32 +58918,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58893,19 +58953,17 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58924,32 +58982,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58959,19 +59017,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58990,32 +59046,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59025,19 +59081,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59056,32 +59110,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59091,19 +59145,17 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59122,32 +59174,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59157,19 +59209,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59188,32 +59238,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59223,19 +59273,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59254,32 +59302,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59289,9 +59337,9 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59299,9 +59347,9 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59320,32 +59368,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59355,9 +59403,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59365,9 +59413,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByCreatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59386,32 +59434,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59421,9 +59469,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59431,9 +59479,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByUpdatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59452,48 +59500,54 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59512,30 +59566,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59544,16 +59600,20 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59572,30 +59632,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59604,16 +59666,20 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59632,48 +59698,54 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59692,30 +59764,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59724,16 +59798,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59752,30 +59830,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59784,16 +59864,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59812,52 +59896,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59876,52 +59962,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59940,32 +60030,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59975,17 +60067,19 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60004,52 +60098,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60068,52 +60166,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60132,52 +60234,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, 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: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60196,52 +60302,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60260,32 +60370,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60295,17 +60407,19 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60324,52 +60438,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60388,32 +60506,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60423,17 +60543,19 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60452,32 +60574,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60487,17 +60609,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60516,32 +60640,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60551,17 +60675,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60580,50 +60706,54 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, 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: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60642,32 +60772,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60676,16 +60806,20 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +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 `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60704,32 +60838,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60738,16 +60872,20 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +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 `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60766,50 +60904,54 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, 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: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60828,32 +60970,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60862,16 +61004,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60890,32 +61036,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60924,16 +61070,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60952,54 +61102,54 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByAnnouncementId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61018,54 +61168,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByApplicationId( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61084,32 +61234,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61119,9 +61269,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61129,9 +61279,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByUpdatedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61150,54 +61300,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByArchivedBy( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61216,54 +61366,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByAnnouncementId( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61282,54 +61432,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByApplicationId( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61348,54 +61498,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByCreatedBy( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61414,32 +61564,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61449,9 +61599,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61459,9 +61609,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByArchivedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61480,54 +61630,54 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByAnnouncementId( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61546,32 +61696,32 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61581,9 +61731,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61591,9 +61741,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61612,32 +61762,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61647,9 +61797,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61657,9 +61807,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61678,32 +61828,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61713,9 +61863,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61723,9 +61873,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61744,32 +61894,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61779,9 +61929,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61789,9 +61939,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61810,32 +61960,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61845,9 +61995,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61855,9 +62005,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61876,32 +62026,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61911,9 +62061,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61921,9 +62071,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61942,32 +62092,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61977,9 +62127,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61987,9 +62137,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62008,32 +62158,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62043,9 +62193,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62053,9 +62203,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62074,32 +62224,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62109,9 +62259,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62119,9 +62269,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationGisAssessmentHhsByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62140,32 +62290,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa """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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62175,9 +62325,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62185,9 +62335,9 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM node: Application """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62206,32 +62356,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM """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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62241,9 +62391,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62251,9 +62401,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62272,32 +62422,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa """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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62307,9 +62457,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62317,9 +62467,9 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationGisAssessmentHhsByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62338,32 +62488,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa """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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62373,17 +62523,19 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62402,32 +62554,32 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62437,17 +62589,19 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62466,32 +62620,32 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62501,17 +62655,19 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62530,32 +62686,32 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62565,17 +62721,19 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62594,32 +62752,32 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62629,17 +62787,19 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62658,32 +62818,32 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62693,17 +62853,19 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62722,32 +62884,32 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62759,7 +62921,7 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62804,14 +62966,14 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62823,7 +62985,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62831,7 +62993,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62868,14 +63030,14 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62887,7 +63049,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62895,7 +63057,7 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62930,38 +63092,36 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationSowData`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62980,30 +63140,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } -"""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 `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63012,16 +63174,18 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63040,30 +63204,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } -"""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 `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63072,16 +63238,18 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63100,54 +63268,52 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { + """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationSowData`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63166,30 +63332,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } -"""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 `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63198,16 +63366,18 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63226,30 +63396,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } -"""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 `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63258,16 +63430,18 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +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 `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63286,54 +63460,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63352,30 +63526,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63384,16 +63560,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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63412,30 +63592,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63444,16 +63626,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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63472,54 +63658,54 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63538,30 +63724,32 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63570,16 +63758,20 @@ 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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63598,30 +63790,32 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63630,16 +63824,20 @@ 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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63658,54 +63856,54 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63724,30 +63922,32 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63756,16 +63956,20 @@ 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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63784,30 +63988,32 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } -"""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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63816,16 +64022,20 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63844,54 +64054,50 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63910,30 +64116,32 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } -"""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 `CbcProject`. +""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63942,16 +64150,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 `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 `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63970,30 +64178,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } -"""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 `CbcProject`. +""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64002,16 +64212,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 `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 `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64030,54 +64240,50 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { - """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 `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ProjectInformationData`. -""" -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +"""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 `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64096,32 +64302,32 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64130,20 +64336,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 `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 `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64162,32 +64364,32 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64196,20 +64398,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 `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 `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64228,32 +64426,32 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64263,19 +64461,17 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64294,32 +64490,32 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64329,19 +64525,17 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +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 `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64360,32 +64554,32 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64395,19 +64589,17 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +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 `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64426,32 +64618,32 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64461,19 +64653,17 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64492,32 +64682,32 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64527,19 +64717,17 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +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 `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64558,32 +64746,32 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64593,19 +64781,17 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +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 `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64624,54 +64810,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -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 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: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + 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 CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +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 @@ -64690,30 +64874,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 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: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64722,16 +64908,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 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`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64750,30 +64938,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 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: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64782,16 +64972,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 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`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64810,54 +65002,50 @@ 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 `Notification`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, 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: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64876,48 +65064,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, 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: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + 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 `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +"""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 `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -64936,30 +65126,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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""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 `Notification`. +""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64968,16 +65160,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64996,54 +65188,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, 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: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65062,48 +65250,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, 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: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + 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 `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +"""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 `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65122,48 +65312,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, 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: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + 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 `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +"""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 `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -65182,54 +65374,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, 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: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65248,30 +65436,32 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""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 `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65280,16 +65470,16 @@ 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 `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 `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65308,48 +65498,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, 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: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + 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 `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +"""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 `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65368,54 +65560,50 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - 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 `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -65434,30 +65622,32 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""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 `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65466,16 +65656,16 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65494,30 +65684,32 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""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 `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65526,16 +65718,16 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65554,54 +65746,52 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65620,30 +65810,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""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 `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65652,16 +65844,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65680,30 +65874,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""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 `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65712,16 +65908,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65740,32 +65938,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65775,17 +65973,17 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65804,32 +66002,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65839,17 +66037,17 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65868,32 +66066,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65903,17 +66101,17 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65932,32 +66130,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65967,17 +66165,17 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65996,32 +66194,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66031,17 +66229,17 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66060,32 +66258,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66095,17 +66293,17 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66124,32 +66322,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66159,17 +66357,19 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66188,32 +66388,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66223,17 +66423,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66252,32 +66454,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66287,17 +66489,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66316,32 +66520,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66351,9 +66555,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66361,9 +66565,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66382,34 +66586,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66419,9 +66621,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66429,9 +66631,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66450,34 +66652,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66487,9 +66687,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66497,9 +66697,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66518,34 +66718,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66555,9 +66753,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66565,9 +66763,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66586,34 +66784,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66623,9 +66819,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66633,9 +66829,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66654,34 +66850,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66691,9 +66885,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66701,9 +66895,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66722,34 +66916,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66759,9 +66951,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66769,9 +66961,9 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66790,34 +66982,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66827,9 +67017,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66837,9 +67027,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66858,34 +67048,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66895,9 +67083,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66905,9 +67093,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66926,34 +67114,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66963,9 +67149,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66973,9 +67159,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66994,32 +67180,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67029,9 +67215,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67039,9 +67225,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67060,32 +67246,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67095,9 +67281,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67105,9 +67291,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67126,32 +67312,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67161,9 +67347,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67171,9 +67357,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67192,32 +67378,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67227,9 +67413,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67237,9 +67423,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67258,32 +67444,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67293,9 +67479,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67303,9 +67489,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67324,54 +67510,50 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67390,32 +67572,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 `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 + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67424,20 +67606,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +"""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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67456,32 +67634,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 `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 + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67490,20 +67668,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67522,52 +67696,50 @@ 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 `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 + ): CcbcUsersConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67586,32 +67758,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 `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 + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67620,18 +67792,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67650,32 +67820,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 `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 + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67684,18 +67854,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67714,32 +67882,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 `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 + ): CcbcUsersConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67748,18 +67916,16 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67778,116 +67944,54 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, 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: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type 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 `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + The count of *all* `ApplicationStatus` you could get from the connection. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -67906,52 +68010,50 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67970,32 +68072,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68004,18 +68106,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +"""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 `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68034,52 +68134,50 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, 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: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68098,54 +68196,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - 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 `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -68164,32 +68262,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68198,20 +68296,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68230,32 +68324,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68264,20 +68358,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68296,32 +68386,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68330,20 +68420,16 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68362,54 +68448,54 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { - """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 `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + 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 `ApplicationClaimsExcelData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -68428,32 +68514,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68462,20 +68548,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68494,54 +68576,50 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { - """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 `ApplicationClaimsExcelData`, 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: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68560,32 +68638,30 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68594,20 +68670,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68626,32 +68698,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +"""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 `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68660,20 +68730,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68692,54 +68758,48 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `ApplicationMilestoneData`, 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: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """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 `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """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 `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68758,32 +68818,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68792,20 +68850,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 `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68824,32 +68878,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationMilestoneData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68858,20 +68910,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 `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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68890,54 +68938,48 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `ApplicationMilestoneData`, 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: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """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 `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """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 `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68956,32 +68998,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `ApplicationMilestoneData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68990,20 +69030,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 `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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69022,32 +69058,30 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationMilestoneData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69056,20 +69090,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 `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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69088,54 +69118,48 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `ApplicationMilestoneData`, 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: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """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 CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """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 `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69154,32 +69178,30 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +"""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 `CcbcUser`, info from the `ApplicationMilestoneData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69188,20 +69210,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69220,32 +69238,30 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69254,20 +69270,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69286,54 +69298,48 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `ApplicationMilestoneExcelData`, 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: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69352,54 +69358,54 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { - """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 `ApplicationMilestoneExcelData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69418,54 +69424,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69484,54 +69490,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByApplicationId( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69550,32 +69556,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69585,9 +69591,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69595,9 +69601,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69616,54 +69622,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69682,54 +69688,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - 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 `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByApplicationId( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -69748,32 +69754,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69783,9 +69789,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69793,9 +69799,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69814,32 +69820,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69849,9 +69855,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69859,9 +69865,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69880,50 +69886,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, 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: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69942,50 +69952,54 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - 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 `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +""" +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -70004,32 +70018,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70038,16 +70052,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 `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 `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70066,32 +70084,32 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70100,16 +70118,20 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70128,50 +70150,54 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, 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: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -70190,50 +70216,54 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, 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: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70252,54 +70282,54 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByApplicationId( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70318,32 +70348,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70353,9 +70383,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70363,9 +70393,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70384,54 +70414,54 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -70450,32 +70480,32 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70485,9 +70515,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70495,9 +70525,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByApplicationId( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70516,32 +70546,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70551,9 +70581,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70561,9 +70591,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByCreatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70582,32 +70612,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70617,9 +70647,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70627,9 +70657,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70648,54 +70678,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, 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: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -70714,54 +70744,54 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByCreatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70780,32 +70810,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70815,9 +70845,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70825,9 +70855,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70846,54 +70876,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { + """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """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`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationProjectTypesByApplicationId( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70912,54 +70942,52 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { - """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 `ApplicationProjectType`, 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: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationProjectType`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70978,54 +71006,54 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, 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: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + 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 `ApplicationProjectType`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +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 `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -71044,54 +71072,52 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { + """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """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 `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71110,32 +71136,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71145,19 +71171,17 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71176,54 +71200,52 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { - """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 `ApplicationProjectType`, 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: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + 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 `ApplicationProjectType`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71242,54 +71264,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - 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 `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -71308,32 +71330,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71343,19 +71365,17 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71374,32 +71394,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71409,19 +71429,17 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71440,50 +71458,52 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, 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: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + 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 `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +""" +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 `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71502,50 +71522,54 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - 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 `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """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 `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """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 `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -71564,32 +71588,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71598,16 +71622,18 @@ 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 `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71626,32 +71652,32 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71660,16 +71686,18 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +""" +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 `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71688,32 +71716,30 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { """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 `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71722,16 +71748,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71750,32 +71776,30 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { """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 `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71784,16 +71808,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71812,50 +71836,48 @@ 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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `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: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71874,50 +71896,48 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""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 `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: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! """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 `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """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`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71936,32 +71956,30 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +"""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: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71970,16 +71988,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71998,32 +72016,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 `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 CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { +"""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 `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: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72032,16 +72048,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 CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72060,50 +72076,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 `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Application`, info from the `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: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -72122,50 +72136,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 `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 `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""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 `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: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! """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 CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """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`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -72184,32 +72196,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 `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 CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { +"""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: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72218,16 +72228,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 `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`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72246,32 +72256,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 `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 CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `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: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72280,16 +72288,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 `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72308,50 +72316,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 `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 `Notification`. -""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, 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: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! """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 `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """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 `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -72370,50 +72376,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 `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 `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 CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { + """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: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! """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 CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """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`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -72432,32 +72436,30 @@ 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 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 `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: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72466,16 +72468,16 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72494,32 +72496,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 CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72528,16 +72528,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 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 `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72556,54 +72556,108 @@ 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 `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { + """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: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! """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 CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByApplicationId( + edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -72622,32 +72676,30 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 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: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72656,20 +72708,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72688,32 +72736,30 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 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: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72722,20 +72768,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72754,54 +72796,52 @@ 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`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - 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 `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CbcData` at the end of the edge.""" + node: CbcData - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -72820,32 +72860,32 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { """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 `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72855,19 +72895,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72886,32 +72924,32 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { """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 `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72921,19 +72959,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72952,54 +72988,52 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - 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 `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CbcData` at the end of the edge.""" + node: CbcData - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -73018,32 +73052,32 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { """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 `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73053,19 +73087,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73084,32 +73116,32 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { """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 `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73119,19 +73151,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73150,48 +73180,52 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! """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 `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { +""" +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """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 `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -73210,30 +73244,32 @@ type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73242,16 +73278,18 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73270,30 +73308,32 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73302,16 +73342,18 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73330,48 +73372,50 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge!]! """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 `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" +type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge { """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 `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -73390,48 +73434,54 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { +""" +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -73450,30 +73500,32 @@ type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73482,16 +73534,18 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73510,48 +73564,52 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73570,30 +73628,32 @@ type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { +""" +A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection { """A list of `Cbc` objects.""" nodes: [Cbc]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73602,16 +73662,16 @@ type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" +type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Cbc` at the end of the edge.""" node: Cbc - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -73630,48 +73690,54 @@ type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -73690,30 +73756,32 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73722,16 +73790,18 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73750,48 +73820,52 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73810,30 +73884,32 @@ type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { +""" +A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection { """A list of `Cbc` objects.""" nodes: [Cbc]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73842,16 +73918,16 @@ type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" +type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Cbc` at the end of the edge.""" node: Cbc - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -73870,48 +73946,54 @@ type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -73930,30 +74012,32 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73962,16 +74046,18 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73990,48 +74076,52 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74050,48 +74140,52 @@ type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74110,30 +74204,32 @@ type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74142,16 +74238,18 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74170,30 +74268,32 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74202,16 +74302,18 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74230,54 +74332,52 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74296,32 +74396,32 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74331,19 +74431,17 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74362,32 +74460,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74397,19 +74495,17 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy } """ -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74428,54 +74524,50 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcApplicationPendingChangeRequestCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74494,32 +74586,32 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74528,20 +74620,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74560,32 +74648,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74594,20 +74682,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + node: CcbcUser + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74626,54 +74710,50 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74692,32 +74772,32 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74726,20 +74806,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74758,32 +74834,32 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74792,20 +74868,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74824,52 +74896,50 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74888,32 +74958,32 @@ type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74922,18 +74992,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74952,32 +75020,32 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74986,18 +75054,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75016,52 +75082,50 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75080,32 +75144,32 @@ type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75114,18 +75178,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75144,32 +75206,32 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75178,18 +75240,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75208,52 +75268,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataChangeReasonCondition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, 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: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75272,32 +75334,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { +"""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 `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75306,18 +75366,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { +"""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 `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75336,32 +75394,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { +"""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 `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75370,18 +75426,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { +"""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 `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75400,52 +75454,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """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 `CommunitiesSourceData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """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 `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75464,32 +75520,30 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection { +"""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 `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75498,18 +75552,16 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge { +"""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 `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75528,32 +75580,30 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75562,18 +75612,16 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge { +"""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 `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75592,52 +75640,54 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """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 `CommunitiesSourceData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """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 `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75656,32 +75706,30 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection { +"""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 `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75690,18 +75738,16 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge { +"""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 `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75720,32 +75766,30 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection { +"""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 `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75754,18 +75798,16 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75784,50 +75826,54 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcProjectCommunity`, 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: [CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" -type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +""" +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCbcId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -75846,54 +75892,48 @@ type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +"""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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, 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: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75912,32 +75952,30 @@ type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75946,18 +75984,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75976,52 +76012,54 @@ type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection { - """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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge!]! + 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 `CbcProjectCommunity`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge { +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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -76040,50 +76078,48 @@ type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""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 `Cbc`, info from the `CbcProjectCommunity`, 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: [CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" -type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCbcId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76102,54 +76138,48 @@ type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +"""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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, 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: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76168,52 +76198,54 @@ type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """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 `CbcProjectCommunity`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -76232,32 +76264,30 @@ type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection { +"""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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76266,18 +76296,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge { +"""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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76296,50 +76324,48 @@ type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""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 `Cbc`, info from the `CbcProjectCommunity`, 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: [CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" -type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCbcId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76358,54 +76384,54 @@ type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, 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: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `CommunitiesSourceData` you could get from the connection. + The count of *all* `ApplicationSowData` you could get from the connection. """ totalCount: Int! } """ -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -76424,32 +76450,30 @@ type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesS """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection { +"""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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76458,18 +76482,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge { +"""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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76488,32 +76510,30 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection { +"""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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76522,18 +76542,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge { +"""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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76552,50 +76570,54 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, 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: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -76614,32 +76636,30 @@ type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. -""" -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection { +"""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 `ReportingGcpe`, 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: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76648,16 +76668,16 @@ type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge { +"""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 `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76676,32 +76696,30 @@ type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. -""" -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection { +"""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 `ReportingGcpe`, 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: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76710,16 +76728,16 @@ type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge { +"""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 `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76738,50 +76756,54 @@ type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, 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: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -76800,32 +76822,30 @@ type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. -""" -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection { +"""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 `ReportingGcpe`, 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: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76834,16 +76854,16 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge { +"""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 `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76862,32 +76882,30 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. -""" -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection { +"""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 `ReportingGcpe`, 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: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76896,16 +76914,16 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge { +"""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 `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76924,52 +76942,54 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [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: ReportingGcpeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationAnnounced`, 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: [CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationAnnounced`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -76988,32 +77008,30 @@ type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection { +"""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 `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77022,18 +77040,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77052,32 +77068,30 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77086,18 +77100,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -77116,52 +77128,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationAnnounced`, 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: [CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationAnnounced`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -77180,32 +77194,30 @@ type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection { +"""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 `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77214,18 +77226,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77244,32 +77254,30 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77278,18 +77286,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -77308,52 +77314,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection { - """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 `ApplicationAnnounced`, 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: [CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationAnnounced`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -77372,32 +77380,30 @@ type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection { +"""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 `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77406,18 +77412,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77436,32 +77440,30 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection { +"""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 `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77470,18 +77472,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77500,19 +77500,19 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ @@ -80556,6 +80556,12 @@ type Mutation { """ input: DeleteCommunityProgressReportInput! ): DeleteCommunityProgressReportPayload + editCbcProjectCommunities( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: EditCbcProjectCommunitiesInput! + ): EditCbcProjectCommunitiesPayload importApplicationAnalystLead( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. @@ -93707,6 +93713,33 @@ input DeleteCommunityProgressReportInput { formData: JSON! } +"""The output of our `editCbcProjectCommunities` mutation.""" +type EditCbcProjectCommunitiesPayload { + """ + 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 + cbcProjectCommunities: [CbcProjectCommunity] + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + +"""All input for the `editCbcProjectCommunities` mutation.""" +input EditCbcProjectCommunitiesInput { + """ + 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 + _projectId: Int! + _communityIdsToAdd: [Int]! + _communityIdsToArchive: [Int]! +} + """The output of our `importApplicationAnalystLead` mutation.""" type ImportApplicationAnalystLeadPayload { """ From 9f2d4f09a918e70d7da10f25be43526f5360d2da Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Wed, 21 Aug 2024 12:36:05 -0400 Subject: [PATCH 05/32] chore: remove unused variable --- app/lib/theme/fields/ArrayLocationDataField.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx index a510ebe0fd..2969c59012 100644 --- a/app/lib/theme/fields/ArrayLocationDataField.tsx +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -5,7 +5,7 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { const { items, onAddClick, canAdd, formContext } = props; const deleteCommunitySource = formContext?.deleteCommunitySource as Function; - const addCommunitySource = formContext?.addCommunitySource as Function; + // const addCommunitySource = formContext?.addCommunitySource as Function; return ( <> From 3637a3e3d92a3ce3d103e0888d09ffb5bedf1e15 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Wed, 21 Aug 2024 13:24:12 -0400 Subject: [PATCH 06/32] chore: updated graphql schema --- app/schema/schema.graphql | 49340 ++++++++++++++++++------------------ 1 file changed, 24670 insertions(+), 24670 deletions(-) diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index 0893618bbe..18fc3720b3 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -2756,8 +2756,8 @@ type CcbcUser implements Node { """Reads a single `CcbcUser` that is related to this `CcbcUser`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2776,22 +2776,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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2810,22 +2810,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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2844,22 +2844,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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2878,22 +2878,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2912,22 +2912,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2946,22 +2946,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2980,22 +2980,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3014,22 +3014,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3048,24 +3048,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3084,24 +3082,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3120,24 +3116,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3156,22 +3150,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3190,22 +3184,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3224,22 +3218,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3258,24 +3252,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3294,24 +3286,22 @@ type CcbcUser 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3330,24 +3320,22 @@ type CcbcUser 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3366,22 +3354,22 @@ type CcbcUser 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3400,22 +3388,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3434,22 +3422,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3468,24 +3456,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3504,24 +3492,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3540,24 +3528,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByArchivedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3576,19 +3564,19 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """Reads and enables pagination through a set of `RfiData`.""" rfiDataByCreatedBy( @@ -3692,8 +3680,8 @@ type CcbcUser implements Node { filter: RfiDataFilter ): RfiDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3712,22 +3700,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3746,22 +3734,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3780,22 +3768,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3814,22 +3802,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3848,22 +3836,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3882,22 +3870,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `RecordVersion`.""" + recordVersionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3916,22 +3904,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RecordVersion`.""" + orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: RecordVersionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: RecordVersionFilter + ): RecordVersionsConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3950,22 +3940,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3984,24 +3976,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByCreatedBy( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4020,24 +4012,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4056,24 +4046,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4092,24 +4080,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4128,26 +4114,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4166,26 +4148,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4204,26 +4182,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4242,24 +4216,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4278,24 +4250,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4314,24 +4284,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4350,24 +4318,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4386,24 +4354,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4422,24 +4390,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4458,24 +4426,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByUpdatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4494,24 +4462,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByArchivedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4530,24 +4498,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4566,24 +4534,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4602,24 +4568,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4638,22 +4602,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4686,8 +4650,8 @@ type CcbcUser implements Node { filter: ApplicationSowDataFilter ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4706,22 +4670,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4740,24 +4704,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4776,24 +4738,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4812,24 +4772,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4848,22 +4806,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4882,22 +4840,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4916,22 +4876,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4950,22 +4912,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4984,22 +4948,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5018,22 +4982,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5052,22 +5016,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5086,22 +5050,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5120,22 +5084,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5154,22 +5118,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5188,22 +5152,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5222,22 +5186,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5256,24 +5220,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5292,24 +5254,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5328,24 +5290,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5364,24 +5328,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationProjectTypesByCreatedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5400,24 +5366,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByUpdatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5436,24 +5404,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByArchivedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5472,22 +5440,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5506,22 +5476,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5540,22 +5510,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5574,22 +5544,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5608,22 +5578,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5642,22 +5614,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5676,22 +5650,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5710,22 +5686,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5744,22 +5722,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5778,22 +5758,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5812,22 +5794,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5846,22 +5830,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5880,24 +5866,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByCreatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5916,24 +5902,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5952,24 +5936,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5988,24 +5970,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6024,24 +6004,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByUpdatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6060,24 +6040,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByArchivedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6096,22 +6076,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6130,22 +6112,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6164,22 +6148,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6198,22 +6184,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6232,22 +6220,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6266,22 +6254,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6300,22 +6288,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6334,22 +6322,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6368,22 +6356,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6402,22 +6390,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6436,22 +6424,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6470,22 +6460,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6504,22 +6496,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6538,22 +6532,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6572,22 +6566,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6606,22 +6600,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6640,22 +6634,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6674,22 +6668,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6708,22 +6702,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6742,22 +6736,24 @@ 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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6776,22 +6772,24 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6810,22 +6808,24 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `RecordVersion`.""" - recordVersionsByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6844,22 +6844,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RecordVersion`.""" - orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RecordVersionCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RecordVersionFilter - ): RecordVersionsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6878,22 +6878,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6912,22 +6912,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6946,22 +6946,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6980,22 +6980,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7014,22 +7014,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7048,22 +7048,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7082,22 +7082,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7116,22 +7116,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7150,22 +7150,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7184,22 +7184,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7218,22 +7218,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7252,22 +7252,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7286,22 +7286,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7320,22 +7320,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7354,22 +7354,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7388,22 +7388,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 + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7434,10 +7434,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7468,10 +7468,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7490,22 +7490,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 + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7536,10 +7536,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7570,10 +7570,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7592,22 +7592,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 - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7638,10 +7638,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeCreatedByAndCounterId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GaplessCounterCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7672,10 +7706,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7694,22 +7728,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 + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -7728,22 +7762,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7774,10 +7808,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7808,10 +7842,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -7830,22 +7864,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -7864,22 +7898,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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7910,10 +7944,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7944,10 +7978,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -7966,22 +8000,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8000,22 +8034,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8046,10 +8080,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -8068,22 +8102,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8114,10 +8148,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8148,10 +8182,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8170,22 +8204,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 - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -8204,22 +8238,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8250,10 +8284,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8284,10 +8318,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8318,10 +8352,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -8340,22 +8374,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8386,44 +8420,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8454,10 +8454,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8476,22 +8476,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 - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -8510,22 +8510,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 `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8556,10 +8556,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8590,10 +8590,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8612,22 +8612,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 + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -8646,22 +8646,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 + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8692,10 +8692,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8714,22 +8714,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 + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8748,22 +8748,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8794,10 +8828,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8828,10 +8862,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8850,22 +8884,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -8884,22 +8918,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8930,10 +8964,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8964,10 +8998,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8986,22 +9020,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 `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9020,22 +9054,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 - ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9066,10 +9100,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9088,22 +9122,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 - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9122,22 +9156,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 `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9168,10 +9202,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9202,10 +9236,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9224,22 +9258,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9270,10 +9338,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9304,10 +9372,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -9326,22 +9394,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9360,22 +9428,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 + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9406,10 +9474,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9440,44 +9508,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9496,22 +9530,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9542,10 +9576,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9576,10 +9610,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9598,22 +9632,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadCreatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -9632,22 +9666,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9678,10 +9712,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9712,10 +9746,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9746,10 +9780,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -9768,22 +9802,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 - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9814,44 +9848,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9882,10 +9882,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9904,22 +9904,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 - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -9938,22 +9938,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9984,10 +9984,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10018,7 +10018,7 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( @@ -10326,42 +10326,8 @@ type CcbcUser implements Node { filter: CcbcUserFilter ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10380,22 +10346,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 - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -10414,22 +10380,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 `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10460,10 +10426,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10494,10 +10460,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10516,22 +10482,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -10550,22 +10516,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10596,10 +10562,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10618,22 +10584,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 - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedCreatedByAndApplicationId( + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10664,10 +10630,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! + ): 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`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10698,10 +10698,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10732,10 +10732,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedUpdatedByAndApplicationId( + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10766,10 +10766,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10800,10 +10800,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10834,10 +10834,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncedArchivedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10868,10 +10868,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10902,10 +10902,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10936,10 +10936,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10970,10 +10970,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11004,10 +11004,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11038,10 +11038,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11072,10 +11072,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11106,10 +11106,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11140,10 +11140,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11174,10 +11174,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11208,10 +11208,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11242,10 +11242,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + applicationsByConditionalApprovalDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11276,10 +11276,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11310,10 +11310,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11344,10 +11344,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11366,22 +11366,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11412,10 +11412,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11446,10 +11446,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11468,22 +11468,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 - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11514,10 +11514,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11548,10 +11548,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): 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! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11582,10 +11616,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11616,10 +11650,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11650,10 +11684,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -11672,22 +11706,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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11706,22 +11740,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11752,44 +11786,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11820,10 +11820,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -11842,22 +11842,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + applicationsByApplicationGisDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11888,10 +11888,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11922,10 +11922,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11956,10 +11956,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11978,22 +11978,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12024,10 +12024,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12058,10 +12058,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12080,22 +12080,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12126,10 +12126,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12160,10 +12160,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -12182,22 +12182,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12216,22 +12216,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 - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12262,10 +12262,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12284,22 +12284,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 + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -12318,22 +12318,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12352,22 +12352,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 - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12386,22 +12386,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 + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12432,10 +12432,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -12454,22 +12454,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12500,10 +12500,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12534,10 +12534,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12568,112 +12568,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12704,10 +12602,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12738,10 +12636,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12772,10 +12670,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12806,10 +12704,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12840,10 +12738,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12874,10 +12772,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12908,10 +12806,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12942,10 +12840,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12976,10 +12874,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13010,10 +12908,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13044,10 +12942,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13078,10 +12976,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13112,10 +13010,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13146,10 +13044,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13180,10 +13078,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13214,10 +13112,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13248,10 +13146,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13282,10 +13180,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13304,22 +13202,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 - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13350,10 +13248,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13384,10 +13282,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13406,22 +13304,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13452,10 +13350,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13486,10 +13384,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13508,22 +13406,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13554,10 +13452,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13588,10 +13486,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13610,22 +13508,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13656,10 +13554,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13690,10 +13588,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13712,22 +13610,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13758,10 +13656,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13792,10 +13690,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13814,22 +13712,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13860,10 +13758,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13894,10 +13792,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13928,10 +13826,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13962,10 +13860,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13996,10 +13894,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14030,10 +13928,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14064,10 +13962,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14098,10 +13996,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14132,10 +14030,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14166,10 +14064,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14200,10 +14098,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14222,22 +14120,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14256,22 +14154,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14302,10 +14200,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14324,22 +14222,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14358,22 +14256,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14392,22 +14290,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14426,22 +14324,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14472,10 +14370,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14494,22 +14392,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14528,22 +14426,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14574,10 +14472,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14608,10 +14506,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14630,22 +14528,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 - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14676,10 +14574,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14710,10 +14608,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -14732,22 +14630,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 - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14778,10 +14676,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14812,10 +14710,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14846,10 +14744,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14880,10 +14778,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14914,10 +14812,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14948,10 +14846,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14982,10 +14880,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15016,10 +14914,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15050,10 +14948,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15084,10 +14982,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15118,10 +15016,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15152,10 +15050,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15186,10 +15084,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15220,10 +15118,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15254,10 +15152,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15288,10 +15186,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15322,10 +15220,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15356,10 +15254,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15390,10 +15288,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15424,10 +15322,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15458,10 +15356,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15492,10 +15390,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15526,10 +15424,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15548,22 +15446,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 - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15594,10 +15492,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15628,10 +15526,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15650,22 +15548,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 - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15696,10 +15594,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15730,10 +15628,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15764,44 +15662,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15832,10 +15696,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15866,10 +15730,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15900,44 +15764,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15968,10 +15798,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16002,10 +15832,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16036,44 +15866,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16104,10 +15900,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16138,10 +15934,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16160,22 +15956,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 + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16206,10 +16002,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16240,10 +16036,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16262,22 +16058,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16308,10 +16104,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16342,10 +16138,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16364,22 +16160,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16410,10 +16206,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16444,10 +16240,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16466,22 +16262,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16512,10 +16308,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16546,10 +16342,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16580,10 +16376,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16602,22 +16398,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 + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16648,10 +16444,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16682,10 +16512,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16704,22 +16534,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 - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16738,22 +16568,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16784,10 +16614,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16818,10 +16648,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16852,10 +16682,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16874,22 +16704,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 - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16920,10 +16750,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16942,22 +16772,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 - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16976,22 +16806,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 + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17010,22 +16840,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 + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17056,10 +16886,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17090,10 +16920,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17112,22 +16942,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17146,22 +16976,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17192,10 +17022,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17226,10 +17056,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17248,22 +17078,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17282,22 +17112,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17328,10 +17158,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17362,10 +17226,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17384,22 +17248,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 + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17418,22 +17282,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17464,10 +17328,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17498,10 +17362,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17532,10 +17396,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17554,22 +17418,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17600,10 +17464,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): 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`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17634,10 +17532,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17656,22 +17554,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 - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17690,22 +17588,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17736,10 +17634,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17770,10 +17668,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17804,10 +17702,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17838,10 +17736,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17872,10 +17770,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17906,10 +17804,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17940,10 +17838,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17974,10 +17872,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndCbcId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17996,22 +17894,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -18030,22 +17928,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18076,10 +17974,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18110,10 +18008,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndCbcId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18132,22 +18030,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -18166,22 +18064,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18212,10 +18110,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18246,10 +18144,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndCbcId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18268,22 +18166,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndProjectNumber( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -18302,22 +18200,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndCreatedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18348,10 +18246,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataArchivedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18382,10 +18280,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18404,22 +18302,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18450,10 +18348,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18484,10 +18382,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18506,22 +18404,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18552,10 +18450,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18586,10 +18484,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -18608,22 +18506,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18654,10 +18552,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18688,44 +18586,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityCreatedByAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18744,22 +18608,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18790,10 +18654,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18824,10 +18688,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -18846,22 +18710,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18880,22 +18744,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( + ccbcUsersByCbcArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -18926,10 +18790,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -18948,22 +18812,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 - ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcProjectCommunityArchivedByAndCbcId( + cbcsByCbcDataCreatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -18994,10 +18858,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19016,22 +18880,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( + ccbcUsersByCbcDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19062,10 +18926,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19084,22 +18948,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 - ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -19118,22 +18982,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 - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( + ccbcUsersByCbcDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19164,10 +19028,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( + ccbcUsersByCbcDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19198,10 +19062,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19220,22 +19084,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 - ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -19254,22 +19118,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 - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19300,10 +19164,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19334,10 +19198,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19356,22 +19220,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 - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19402,10 +19266,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19436,10 +19300,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19458,22 +19322,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 - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19504,10 +19368,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19538,10 +19402,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -19560,22 +19424,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 - ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19606,10 +19470,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19640,10 +19504,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonCreatedByAndCbcDataId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19674,10 +19572,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19708,10 +19606,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonUpdatedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -19730,22 +19628,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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19776,10 +19674,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19810,10 +19708,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcDataChangeReasonArchivedByAndCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -19832,22 +19730,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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + filter: CbcDataFilter + ): CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19878,10 +19776,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersByCbcDataChangeReasonArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19912,10 +19810,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -19934,22 +19832,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersByCommunitiesSourceDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -19980,10 +19878,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20014,10 +19912,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCommunitiesSourceDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20036,22 +19934,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20082,10 +19980,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByCommunitiesSourceDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20116,10 +20014,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20138,22 +20036,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20172,22 +20070,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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20218,44 +20116,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByCbcProjectCommunityCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20286,10 +20150,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityUpdatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20308,22 +20172,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 - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20342,22 +20206,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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20388,10 +20252,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20422,10 +20286,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcProjectCommunityArchivedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -20444,22 +20308,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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -20478,22 +20342,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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + filter: CommunitiesSourceDataFilter + ): CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByCbcProjectCommunityArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20524,10 +20388,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCommunityArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20546,22 +20410,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByReportingGcpeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20592,10 +20456,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByReportingGcpeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20626,10 +20490,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20648,22 +20512,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersByReportingGcpeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20694,10 +20558,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByReportingGcpeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20728,10 +20592,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByReportingGcpeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20750,22 +20614,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20784,22 +20648,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 - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncedCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20830,10 +20694,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -20852,22 +20716,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -20886,22 +20750,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 - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncedUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -20932,82 +20796,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! -} - -"""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 - - """Program type of the project""" - program: String! - - """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 + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -21026,24 +20818,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 + ): CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncedArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -21062,24 +20852,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21098,22 +20886,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 + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncedArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -21132,4081 +20920,3496 @@ 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 + ): CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection! +} + +"""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 `ProjectInformationData`. + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. """ - projectInformationDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + 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 `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [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: ProjectInformationDataCondition +"""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: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( - """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 `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + """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: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + """Checks for equality with the object’s `emailAddress` field.""" + emailAddress: String - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( - """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 `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [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: ApplicationClaimsDataCondition + """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: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! +""" +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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( - """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 `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition + """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: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `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 `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [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: ApplicationCommunityProgressReportDataCondition + """Some related `ccbcUsersByUpdatedBy` exist.""" + ccbcUsersByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" + ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( - """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 `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [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: ApplicationCommunityReportExcelDataCondition + """Some related `intakesByArchivedBy` exist.""" + intakesByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + """Filter by the object’s `applicationsByCreatedBy` relation.""" + applicationsByCreatedBy: CcbcUserToManyApplicationFilter - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( - """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 `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [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: ApplicationInternalDescriptionCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + """Some related `applicationStatusesByCreatedBy` exist.""" + applicationStatusesByCreatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" + applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationStatusesByArchivedBy` exist.""" + applicationStatusesByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" + applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationStatusesByUpdatedBy` exist.""" + applicationStatusesByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `attachmentsByCreatedBy` relation.""" + attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `attachmentsByCreatedBy` exist.""" + attachmentsByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneDataCondition + """Filter by the object’s `attachmentsByUpdatedBy` relation.""" + attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + """Some related `attachmentsByUpdatedBy` exist.""" + attachmentsByUpdatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `attachmentsByArchivedBy` relation.""" + attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `attachmentsByArchivedBy` exist.""" + attachmentsByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `formDataByCreatedBy` relation.""" + formDataByCreatedBy: CcbcUserToManyFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `formDataByCreatedBy` exist.""" + formDataByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `formDataByUpdatedBy` relation.""" + formDataByUpdatedBy: CcbcUserToManyFormDataFilter - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `formDataByUpdatedBy` exist.""" + formDataByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneExcelDataCondition + """Filter by the object’s `formDataByArchivedBy` relation.""" + formDataByArchivedBy: CcbcUserToManyFormDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + """Some related `formDataByArchivedBy` exist.""" + formDataByArchivedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `analystsByCreatedBy` relation.""" + analystsByCreatedBy: CcbcUserToManyAnalystFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `analystsByCreatedBy` exist.""" + analystsByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `analystsByUpdatedBy` relation.""" + analystsByUpdatedBy: CcbcUserToManyAnalystFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `analystsByUpdatedBy` exist.""" + analystsByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `analystsByArchivedBy` relation.""" + analystsByArchivedBy: CcbcUserToManyAnalystFilter - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `analystsByArchivedBy` exist.""" + analystsByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition + """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" + applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + """Some related `applicationAnalystLeadsByCreatedBy` exist.""" + applicationAnalystLeadsByCreatedByExist: Boolean - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" + applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" + applicationAnalystLeadsByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" + applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnalystLeadsByArchivedBy` exist.""" + applicationAnalystLeadsByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `rfiDataByCreatedBy` relation.""" + rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `rfiDataByCreatedBy` exist.""" + rfiDataByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ChangeRequestDataCondition + """Filter by the object’s `rfiDataByUpdatedBy` relation.""" + rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + """Some related `rfiDataByUpdatedBy` exist.""" + rfiDataByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rfiDataByArchivedBy` relation.""" + rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `rfiDataByArchivedBy` exist.""" + rfiDataByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `assessmentDataByCreatedBy` relation.""" + assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `assessmentDataByCreatedBy` exist.""" + assessmentDataByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" + assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `assessmentDataByUpdatedBy` exist.""" + assessmentDataByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """Filter by the object’s `assessmentDataByArchivedBy` relation.""" + assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """Some related `assessmentDataByArchivedBy` exist.""" + assessmentDataByArchivedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" + applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationPackagesByCreatedBy` exist.""" + applicationPackagesByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" + applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationPackagesByUpdatedBy` exist.""" + applicationPackagesByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" + applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationPackagesByArchivedBy` exist.""" + applicationPackagesByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition + """Filter by the object’s `recordVersionsByCreatedBy` relation.""" + recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + """Some related `recordVersionsByCreatedBy` exist.""" + recordVersionsByCreatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" + conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `conditionalApprovalDataByCreatedBy` exist.""" + conditionalApprovalDataByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" + conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `conditionalApprovalDataByUpdatedBy` exist.""" + conditionalApprovalDataByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" + conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `conditionalApprovalDataByArchivedBy` exist.""" + conditionalApprovalDataByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition + """Filter by the object’s `gisDataByCreatedBy` relation.""" + gisDataByCreatedBy: CcbcUserToManyGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + """Some related `gisDataByCreatedBy` exist.""" + gisDataByCreatedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `gisDataByUpdatedBy` relation.""" + gisDataByUpdatedBy: CcbcUserToManyGisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `gisDataByUpdatedBy` exist.""" + gisDataByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `gisDataByArchivedBy` relation.""" + gisDataByArchivedBy: CcbcUserToManyGisDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `gisDataByArchivedBy` exist.""" + gisDataByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" + applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationGisDataByCreatedBy` exist.""" + applicationGisDataByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationProjectTypeCondition + """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" + applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + """Some related `applicationGisDataByUpdatedBy` exist.""" + applicationGisDataByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" + applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationGisDataByArchivedBy` exist.""" + applicationGisDataByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `announcementsByCreatedBy` relation.""" + announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `announcementsByCreatedBy` exist.""" + announcementsByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `announcementsByUpdatedBy` relation.""" + announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `announcementsByUpdatedBy` exist.""" + announcementsByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Filter by the object’s `announcementsByArchivedBy` relation.""" + announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Some related `announcementsByArchivedBy` exist.""" + announcementsByArchivedByExist: Boolean - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" + applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationAnnouncementsByCreatedBy` exist.""" + applicationAnnouncementsByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" + applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnnouncementsByUpdatedBy` exist.""" + applicationAnnouncementsByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. + """ + applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationAnnouncementsByArchivedBy` exist.""" + applicationAnnouncementsByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnalystLeadCondition + """ + Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. + """ + applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" + applicationGisAssessmentHhsByCreatedByExist: Boolean """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. """ - applicationAnnouncementsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" + applicationGisAssessmentHhsByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + """ + applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" + applicationGisAssessmentHhsByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" + applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationSowDataByCreatedBy` exist.""" + applicationSowDataByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" + applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """Some related `applicationSowDataByUpdatedBy` exist.""" + applicationSowDataByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" + applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationSowDataByArchivedBy` exist.""" + applicationSowDataByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sowTab2SByCreatedBy` relation.""" + sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `sowTab2SByCreatedBy` exist.""" + sowTab2SByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" + sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `sowTab2SByUpdatedBy` exist.""" + sowTab2SByUpdatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Filter by the object’s `sowTab2SByArchivedBy` relation.""" + sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Some related `sowTab2SByArchivedBy` exist.""" + sowTab2SByArchivedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `sowTab1SByCreatedBy` relation.""" + sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter - """Only read the last `n` values of the set.""" - last: Int + """Some related `sowTab1SByCreatedBy` exist.""" + sowTab1SByCreatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" + sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `sowTab1SByUpdatedBy` exist.""" + sowTab1SByUpdatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowTab1SByArchivedBy` relation.""" + sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `sowTab1SByArchivedBy` exist.""" + sowTab1SByArchivedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition + """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" + projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """Some related `projectInformationDataByCreatedBy` exist.""" + projectInformationDataByCreatedByExist: Boolean - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" + projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `projectInformationDataByUpdatedBy` exist.""" + projectInformationDataByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" + projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `projectInformationDataByArchivedBy` exist.""" + projectInformationDataByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowTab7SByCreatedBy` relation.""" + sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `sowTab7SByCreatedBy` exist.""" + sowTab7SByCreatedByExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" + sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """Some related `sowTab7SByUpdatedBy` exist.""" + sowTab7SByUpdatedByExist: Boolean - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `sowTab7SByArchivedBy` relation.""" + sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter - """Only read the last `n` values of the set.""" - last: Int + """Some related `sowTab7SByArchivedBy` exist.""" + sowTab7SByArchivedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sowTab8SByCreatedBy` relation.""" + sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `sowTab8SByCreatedBy` exist.""" + sowTab8SByCreatedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" + sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """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 """ - computed column to return space separated list of amendment numbers for a change request + Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. """ - amendmentNumbers: String - - """Computed column to return analyst lead of an application""" - analystLead: String + applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Computed column to return the analyst-visible status of an application""" - analystStatus: String - announced: Boolean + """ + Some related `applicationCommunityProgressReportDataByCreatedBy` exist. + """ + applicationCommunityProgressReportDataByCreatedByExist: Boolean - """Computed column that returns list of announcements for the application""" - announcements( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. + """ + applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. + """ + applicationCommunityProgressReportDataByUpdatedByExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. + """ + applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `applicationCommunityProgressReportDataByArchivedBy` exist. + """ + applicationCommunityProgressReportDataByArchivedByExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. + """ + applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" + applicationCommunityReportExcelDataByCreatedByExist: Boolean - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData + """ + Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. + """ + applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData + """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" + applicationCommunityReportExcelDataByUpdatedByExist: Boolean - """Computed column to return external status of an application""" - externalStatus: String + """ + Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. + """ + applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Computed column to display form_data""" - formData: FormData + """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" + applicationCommunityReportExcelDataByArchivedByExist: Boolean - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh + """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" + applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + """Some related `applicationClaimsDataByCreatedBy` exist.""" + applicationClaimsDataByCreatedByExist: Boolean - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" + applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Computed column that returns list of audit records for application""" - history( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationClaimsDataByUpdatedBy` exist.""" + applicationClaimsDataByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" + applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter - """ - 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 `applicationClaimsDataByArchivedBy` exist.""" + applicationClaimsDataByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. + """ + applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" + applicationClaimsExcelDataByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String + """ + Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. + """ + applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Computed column to display organization name from json data""" - organizationName: String + """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" + applicationClaimsExcelDataByUpdatedByExist: Boolean """ - Computed column to return the application announced status for an application + Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. """ - package: Int + applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter - """Computed column to return project information data""" - projectInformation: ProjectInformationData + """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" + applicationClaimsExcelDataByArchivedByExist: Boolean - """Computed column to display the project name""" - projectName: String + """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" + applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """Computed column to return last RFI for an application""" - rfi: RfiData + """Some related `applicationMilestoneDataByCreatedBy` exist.""" + applicationMilestoneDataByCreatedByExist: Boolean - """Computed column to return status of an application""" - status: String + """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" + applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter - """Computed column to return the order of the status""" - statusOrder: Int + """Some related `applicationMilestoneDataByUpdatedBy` exist.""" + applicationMilestoneDataByUpdatedByExist: Boolean """ - Computed column to return the status order with the status name appended for sorting and filtering + Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. """ - statusSortFilter: String - zone: Int + applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter + + """Some related `applicationMilestoneDataByArchivedBy` exist.""" + applicationMilestoneDataByArchivedByExist: Boolean """ - Computed column to get single lowest zone from json data, used for sorting + Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. """ - zones: [Int] + applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" + applicationMilestoneExcelDataByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. + """ + applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """ - 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 `applicationMilestoneExcelDataByUpdatedBy` exist.""" + applicationMilestoneExcelDataByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + """ + applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" + applicationMilestoneExcelDataByArchivedByExist: Boolean - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" + cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentTypeCondition + """Some related `cbcProjectsByCreatedBy` exist.""" + cbcProjectsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentTypeFilter - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" + cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcProjectsByUpdatedBy` exist.""" + cbcProjectsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" + cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `cbcProjectsByArchivedBy` exist.""" + cbcProjectsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. + """ + applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" + applicationInternalDescriptionsByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. + """ + applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" + applicationInternalDescriptionsByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! + """ + Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. + """ + applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" + applicationInternalDescriptionsByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" + applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter - """ - 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 `applicationProjectTypesByCreatedBy` exist.""" + applicationProjectTypesByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" + applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationProjectTypesByUpdatedBy` exist.""" + applicationProjectTypesByUpdatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" + applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationProjectTypesByArchivedBy` exist.""" + applicationProjectTypesByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `emailRecordsByCreatedBy` relation.""" + emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `emailRecordsByCreatedBy` exist.""" + emailRecordsByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" + emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter - """ - 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 `emailRecordsByUpdatedBy` exist.""" + emailRecordsByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `emailRecordsByArchivedBy` relation.""" + emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `emailRecordsByArchivedBy` exist.""" + emailRecordsByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `notificationsByCreatedBy` relation.""" + notificationsByCreatedBy: CcbcUserToManyNotificationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `notificationsByCreatedBy` exist.""" + notificationsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `notificationsByUpdatedBy` relation.""" + notificationsByUpdatedBy: CcbcUserToManyNotificationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `notificationsByUpdatedBy` exist.""" + notificationsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `notificationsByArchivedBy` relation.""" + notificationsByArchivedBy: CcbcUserToManyNotificationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `notificationsByArchivedBy` exist.""" + notificationsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + """ + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + """ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + """ + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter - """ - 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 `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter - """ - 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 `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" + cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" + cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. + """ + cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter - """ - 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 `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" + cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcDataChangeReasonsByCreatedBy` relation.""" + cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" + cbcDataChangeReasonsByCreatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" + cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" + cbcDataChangeReasonsByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" + cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" + cbcDataChangeReasonsByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" + communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter - """ - 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 `communitiesSourceDataByCreatedBy` exist.""" + communitiesSourceDataByCreatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" + communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `communitiesSourceDataByUpdatedBy` exist.""" + communitiesSourceDataByUpdatedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" + communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `communitiesSourceDataByArchivedBy` exist.""" + communitiesSourceDataByArchivedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" + cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" + cbcProjectCommunitiesByCreatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" + cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter - """ - 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 `cbcProjectCommunitiesByUpdatedBy` exist.""" + cbcProjectCommunitiesByUpdatedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" + cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" + cbcProjectCommunitiesByArchivedByExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" + reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `reportingGcpesByCreatedBy` exist.""" + reportingGcpesByCreatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" + reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( - """Only read the first `n` values of the set.""" - first: Int + """Some related `reportingGcpesByUpdatedBy` exist.""" + reportingGcpesByUpdatedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" + reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter - """ - 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 `reportingGcpesByArchivedBy` exist.""" + reportingGcpesByArchivedByExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" + applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationAnnouncedsByCreatedBy` exist.""" + applicationAnnouncedsByCreatedByExist: Boolean - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" + applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition + """Some related `applicationAnnouncedsByUpdatedBy` exist.""" + applicationAnnouncedsByUpdatedByExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" + applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationAnnouncedsByArchivedBy` exist.""" + applicationAnnouncedsByArchivedByExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `keycloakJwtsBySub` relation.""" + keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter - """ - 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 `keycloakJwtsBySub` exist.""" + keycloakJwtsBySubExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [CcbcUserFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [CcbcUserFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: CcbcUserFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against Int fields. All fields are combined with a logical ‘and.’ +""" +input IntFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Equal to the specified value.""" + equalTo: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Not equal to the specified value.""" + notEqualTo: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Int - """Only read the last `n` values of the set.""" - last: Int + """Included in the specified list.""" + in: [Int!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Not included in the specified list.""" + notIn: [Int!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than the specified value.""" + lessThan: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than the specified value.""" + greaterThan: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Int +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against String fields. All fields are combined with a logical ‘and.’ +""" +input StringFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value.""" + equalTo: String - """Only read the last `n` values of the set.""" - last: Int + """Not equal to the specified value.""" + notEqualTo: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Included in the specified list.""" + in: [String!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not included in the specified list.""" + notIn: [String!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than the specified value.""" + lessThan: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + """Less than or equal to the specified value.""" + lessThanOrEqualTo: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than the specified value.""" + greaterThan: String - """Only read the last `n` values of the set.""" - last: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Contains the specified string (case-sensitive).""" + includes: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Does not contain the specified string (case-sensitive).""" + notIncludes: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Contains the specified string (case-insensitive).""" + includesInsensitive: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Does not contain the specified string (case-insensitive).""" + notIncludesInsensitive: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + """Starts with the specified string (case-sensitive).""" + startsWith: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Does not start with the specified string (case-sensitive).""" + notStartsWith: String - """Only read the last `n` values of the set.""" - last: Int + """Starts with the specified string (case-insensitive).""" + startsWithInsensitive: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Does not start with the specified string (case-insensitive).""" + notStartsWithInsensitive: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Ends with the specified string (case-sensitive).""" + endsWith: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Does not end with the specified string (case-sensitive).""" + notEndsWith: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Ends with the specified string (case-insensitive).""" + endsWithInsensitive: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Does not end with the specified string (case-insensitive).""" + notEndsWithInsensitive: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + """ + Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + like: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLike: String - """Only read the last `n` values of the set.""" - last: Int + """ + Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + likeInsensitive: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLikeInsensitive: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value (case-insensitive).""" + equalToInsensitive: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Not equal to the specified value (case-insensitive).""" + notEqualToInsensitive: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Not equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + distinctFromInsensitive: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + notDistinctFromInsensitive: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! + """Included in the specified list (case-insensitive).""" + inInsensitive: [String!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not included in the specified list (case-insensitive).""" + notInInsensitive: [String!] - """Only read the last `n` values of the set.""" - last: Int + """Less than the specified value (case-insensitive).""" + lessThanInsensitive: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than or equal to the specified value (case-insensitive).""" + lessThanOrEqualToInsensitive: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Greater than the specified value (case-insensitive).""" + greaterThanInsensitive: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than or equal to the specified value (case-insensitive).""" + greaterThanOrEqualToInsensitive: String +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ +""" +input DatetimeFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Equal to the specified value.""" + equalTo: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! + """Not equal to the specified value.""" + notEqualTo: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Included in the specified list.""" + in: [Datetime!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Not included in the specified list.""" + notIn: [Datetime!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than the specified value.""" + lessThan: Datetime - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Greater than the specified value.""" + greaterThan: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Datetime +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ +""" +input BooleanFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Equal to the specified value.""" + equalTo: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Not equal to the specified value.""" + notEqualTo: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Included in the specified list.""" + in: [Boolean!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Not included in the specified list.""" + notIn: [Boolean!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + """Less than the specified value.""" + lessThan: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Greater than the specified value.""" + greaterThan: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Boolean +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCcbcUserFilter { + """ + Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CcbcUserFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyIntakeFilter { + """ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: IntakeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input IntakeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - 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 `openTimestamp` field.""" + openTimestamp: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `closeTimestamp` field.""" + closeTimestamp: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationNumberSeqName` field.""" + applicationNumberSeqName: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `counterId` field.""" + counterId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `description` field.""" + description: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `hidden` field.""" + hidden: BooleanFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `hiddenCode` field.""" + hiddenCode: UUIDFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rollingIntake` field.""" + rollingIntake: BooleanFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationsByIntakeId` relation.""" + applicationsByIntakeId: IntakeToManyApplicationFilter - """ - 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 `applicationsByIntakeId` exist.""" + applicationsByIntakeIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `gaplessCounterByCounterId` relation.""" + gaplessCounterByCounterId: GaplessCounterFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `gaplessCounterByCounterId` exists.""" + gaplessCounterByCounterIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [IntakeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [IntakeFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: IntakeFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ +""" +input UUIDFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Equal to the specified value.""" + equalTo: UUID - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Not equal to the specified value.""" + notEqualTo: UUID - """Only read the last `n` values of the set.""" - last: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: UUID - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: UUID - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Included in the specified list.""" + in: [UUID!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Not included in the specified list.""" + notIn: [UUID!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than the specified value.""" + lessThan: UUID - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than or equal to the specified value.""" + lessThanOrEqualTo: UUID - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + """Greater than the specified value.""" + greaterThan: UUID - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: UUID +} - """Only read the last `n` values of the set.""" - last: Int +""" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +""" +scalar UUID - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ +""" +input IntakeToManyApplicationFilter { + """ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcNumber` field.""" + ccbcNumber: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `owner` field.""" + owner: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `intakeId` field.""" + intakeId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `program` field.""" + program: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `amendmentNumbers` field.""" + amendmentNumbers: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `analystLead` field.""" + analystLead: 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 `analystStatus` field.""" + analystStatus: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `announced` field.""" + announced: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `externalStatus` field.""" + externalStatus: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `hasRfiOpen` field.""" + hasRfiOpen: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `intakeNumber` field.""" + intakeNumber: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `internalDescription` field.""" + internalDescription: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `organizationName` field.""" + organizationName: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `package` field.""" + package: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `projectName` field.""" + projectName: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `status` field.""" + status: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `statusSortFilter` field.""" + statusSortFilter: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `zone` field.""" + zone: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `zones` field.""" + zones: IntListFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusesByApplicationId` relation.""" + applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationStatusesByApplicationId` exist.""" + applicationStatusesByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `attachmentsByApplicationId` relation.""" + attachmentsByApplicationId: ApplicationToManyAttachmentFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `attachmentsByApplicationId` exist.""" + attachmentsByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationFormDataByApplicationId` relation.""" + applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationFormDataByApplicationId` exist.""" + applicationFormDataByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. + """ + applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Some related `applicationAnalystLeadsByApplicationId` exist.""" + applicationAnalystLeadsByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" + applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationRfiDataByApplicationId` exist.""" + applicationRfiDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `assessmentDataByApplicationId` relation.""" + assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `assessmentDataByApplicationId` exist.""" + assessmentDataByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationPackagesByApplicationId` relation.""" + applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationPackagesByApplicationId` exist.""" + applicationPackagesByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `conditionalApprovalDataByApplicationId` relation. + """ + conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + """Some related `conditionalApprovalDataByApplicationId` exist.""" + conditionalApprovalDataByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationGisDataByApplicationId` relation.""" + applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationGisDataByApplicationId` exist.""" + applicationGisDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationAnnouncementsByApplicationId` relation. + """ + applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnnouncementsByApplicationId` exist.""" + applicationAnnouncementsByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. + """ + applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" + applicationGisAssessmentHhsByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationSowDataByApplicationId` relation.""" + applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + """Some related `applicationSowDataByApplicationId` exist.""" + applicationSowDataByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `projectInformationDataByApplicationId` relation. + """ + projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `projectInformationDataByApplicationId` exist.""" + projectInformationDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `changeRequestDataByApplicationId` relation.""" + changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `changeRequestDataByApplicationId` exist.""" + changeRequestDataByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. + """ + applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `applicationCommunityProgressReportDataByApplicationId` exist. + """ + applicationCommunityProgressReportDataByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. + """ + applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + """ + Some related `applicationCommunityReportExcelDataByApplicationId` exist. + """ + applicationCommunityReportExcelDataByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `applicationClaimsDataByApplicationId` relation. + """ + applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationClaimsDataByApplicationId` exist.""" + applicationClaimsDataByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. + """ + applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationClaimsExcelDataByApplicationId` exist.""" + applicationClaimsExcelDataByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Filter by the object’s `applicationMilestoneDataByApplicationId` relation. + """ + applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `applicationMilestoneDataByApplicationId` exist.""" + applicationMilestoneDataByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. + """ + applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" + applicationMilestoneExcelDataByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. + """ + applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationInternalDescriptionsByApplicationId` exist.""" + applicationInternalDescriptionsByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `applicationProjectTypesByApplicationId` relation. + """ + applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationProjectTypesByApplicationId` exist.""" + applicationProjectTypesByApplicationIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `notificationsByApplicationId` relation.""" + notificationsByApplicationId: ApplicationToManyNotificationFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `notificationsByApplicationId` exist.""" + notificationsByApplicationIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `applicationAnnouncedsByApplicationId` relation. + """ + applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationAnnouncedsByApplicationId` exist.""" + applicationAnnouncedsByApplicationIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `intakeByIntakeId` relation.""" + intakeByIntakeId: IntakeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `intakeByIntakeId` exists.""" + intakeByIntakeIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ +""" +input IntListFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Equal to the specified value.""" + equalTo: [Int] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Not equal to the specified value.""" + notEqualTo: [Int] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: [Int] - """Only read the last `n` values of the set.""" - last: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [Int] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than the specified value.""" + lessThan: [Int] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [Int] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than the specified value.""" + greaterThan: [Int] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [Int] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Contains the specified list of values.""" + contains: [Int] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """Contained by the specified list of values.""" + containedBy: [Int] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Overlaps the specified list of values.""" + overlaps: [Int] - """Only read the last `n` values of the set.""" - last: Int + """Any array item is equal to the specified value.""" + anyEqualTo: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Any array item is not equal to the specified value.""" + anyNotEqualTo: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Any array item is less than the specified value.""" + anyLessThan: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Any array item is greater than the specified value.""" + anyGreaterThan: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: Int +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `status` field.""" + status: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `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 `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" + attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Some related `attachmentsByApplicationStatusId` exist.""" + attachmentsByApplicationStatusIdExist: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationStatusTypeByStatus` relation.""" + applicationStatusTypeByStatus: ApplicationStatusTypeFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `applicationStatusTypeByStatus` exists.""" + applicationStatusTypeByStatusExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationStatusFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationStatusFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationStatusFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `file` field.""" + file: UUIDFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `fileName` field.""" + fileName: 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 `fileType` field.""" + fileType: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `fileSize` field.""" + fileSize: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationStatusId` field.""" + applicationStatusId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Filter by the object’s `applicationStatusByApplicationStatusId` relation. + """ + applicationStatusByApplicationStatusId: ApplicationStatusFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `applicationStatusByApplicationStatusId` exists.""" + applicationStatusByApplicationStatusIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [AttachmentFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition + """Checks for any expressions in this list.""" + or: [AttachmentFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + """Negates the expression.""" + not: AttachmentFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `description` field.""" + description: 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 `visibleByApplicant` field.""" + visibleByApplicant: BooleanFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationStatusesByStatus` relation.""" + applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + """Some related `applicationStatusesByStatus` exist.""" + applicationStatusesByStatusExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationStatusTypeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationStatusTypeFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationStatusTypeFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationFormDataFilter { + """Filter by the object’s `formDataId` field.""" + formDataId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `formDataByFormDataId` relation.""" + formDataByFormDataId: FormDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationFormDataFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationFormDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationFormDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `lastEditedPage` field.""" + lastEditedPage: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `formSchemaId` field.""" + formSchemaId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `reasonForChange` field.""" + reasonForChange: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `isEditable` field.""" + isEditable: BooleanFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationFormDataByFormDataId` relation.""" + applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `applicationFormDataByFormDataId` exist.""" + applicationFormDataByFormDataIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. + """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" + formDataStatusTypeByFormDataStatusTypeIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `formByFormSchemaId` relation.""" + formByFormSchemaId: FormFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `formByFormSchemaId` exists.""" + formByFormSchemaIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [FormDataFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [FormDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Negates the expression.""" + not: FormDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! +""" +A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ +""" +input JSONFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Equal to the specified value.""" + equalTo: JSON - """Only read the last `n` values of the set.""" - last: Int + """Not equal to the specified value.""" + notEqualTo: JSON - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Included in the specified list.""" + in: [JSON!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not included in the specified list.""" + notIn: [JSON!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Less than the specified value.""" + lessThan: JSON - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + """Less than or equal to the specified value.""" + lessThanOrEqualTo: JSON - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Greater than the specified value.""" + greaterThan: JSON - """Only read the last `n` values of the set.""" - last: Int + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: JSON - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Contains the specified JSON.""" + contains: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Contains the specified key.""" + containsKey: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Contains all of the specified keys.""" + containsAllKeys: [String!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Contains any of the specified keys.""" + containsAnyKeys: [String!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Contained by the specified JSON.""" + containedBy: JSON +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! +""" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +""" +scalar JSON - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `description` field.""" + description: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" + formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Some related `formDataByFormDataStatusTypeId` exist.""" + formDataByFormDataStatusTypeIdExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + """Checks for all expressions in this list.""" + and: [FormDataStatusTypeFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for any expressions in this list.""" + or: [FormDataStatusTypeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Negates the expression.""" + not: FormDataStatusTypeFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeToManyFormDataFilter { + """ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ +""" +input FormFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `slug` field.""" + slug: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `jsonSchema` field.""" + jsonSchema: JSONFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `formType` field.""" + formType: 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 `formDataByFormSchemaId` relation.""" + formDataByFormSchemaId: FormToManyFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `formDataByFormSchemaId` exist.""" + formDataByFormSchemaIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `formTypeByFormType` relation.""" + formTypeByFormType: FormTypeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `formTypeByFormType` exists.""" + formTypeByFormTypeExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for all expressions in this list.""" + and: [FormFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + """Checks for any expressions in this list.""" + or: [FormFilter!] - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: FormFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +""" +input FormToManyFormDataFilter { + """ + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormDataFilter - """ - 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 `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ +""" +input FormTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `description` field.""" + description: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Filter by the object’s `formsByFormType` relation.""" + formsByFormType: FormTypeToManyFormFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + """Some related `formsByFormType` exist.""" + formsByFormTypeExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [FormTypeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [FormTypeFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: FormTypeFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ +""" +input FormTypeToManyFormFilter { + """ + Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: FormFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: FormFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `analystId` field.""" + analystId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `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 - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `analystByAnalystId` relation.""" + analystByAnalystId: AnalystFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `analystByAnalystId` exists.""" + analystByAnalystIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationAnalystLeadFilter!] - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [ApplicationAnalystLeadFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition + """Negates the expression.""" + not: ApplicationAnalystLeadFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! +""" +A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `familyName` field.""" + familyName: 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 `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `active` field.""" + active: BooleanFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `email` field.""" + email: 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 `applicationAnalystLeadsByAnalystId` relation.""" + applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Some related `applicationAnalystLeadsByAnalystId` exist.""" + applicationAnalystLeadsByAnalystIdExist: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [AnalystFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [AnalystFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: AnalystFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationRfiDataFilter { + """Filter by the object’s `rfiDataId` field.""" + rfiDataId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `rfiDataByRfiDataId` relation.""" + rfiDataByRfiDataId: RfiDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnnouncementCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [ApplicationRfiDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [ApplicationRfiDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: ApplicationRfiDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `rfiNumber` field.""" + rfiNumber: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" + applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + """Some related `applicationRfiDataByRfiDataId` exist.""" + applicationRfiDataByRfiDataIdExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. + """ + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" + rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [RfiDataFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [RfiDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: RfiDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition +""" +A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + """Filter by the object’s `description` field.""" + description: StringFilter - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" + rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `rfiDataByRfiDataStatusTypeId` exist.""" + rfiDataByRfiDataStatusTypeIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [RfiDataStatusTypeFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [RfiDataStatusTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: RfiDataStatusTypeFilter +} - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +""" +input RfiDataStatusTypeToManyRfiDataFilter { + """ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RfiDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RfiDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + """ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RfiDataFilter +} - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAssessmentDataFilter { + """ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AssessmentDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusTypeCondition + """Filter by the object’s `assessmentDataType` field.""" + assessmentDataType: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusTypeFilter - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" + assessmentTypeByAssessmentDataType: AssessmentTypeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + """A related `assessmentTypeByAssessmentDataType` exists.""" + assessmentTypeByAssessmentDataTypeExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for all expressions in this list.""" + and: [AssessmentDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + """Checks for any expressions in this list.""" + or: [AssessmentDataFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Negates the expression.""" + not: AssessmentDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" + assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `assessmentDataByAssessmentDataType` exist.""" + assessmentDataByAssessmentDataTypeExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [AssessmentTypeFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [AssessmentTypeFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + """Negates the expression.""" + not: AssessmentTypeFilter } """ -Table containing intake numbers and their respective open and closing dates +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -type Intake implements Node { +input AssessmentTypeToManyAssessmentDataFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + every: AssessmentDataFilter - """Unique ID for each intake number""" - rowId: Int! + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """Open date and time for an intake number""" - openTimestamp: Datetime! + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} - """Close date and time for an intake number""" - closeTimestamp: Datetime! +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """Unique intake number for a set of CCBC IDs""" - ccbcIntakeNumber: Int! + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter """ - The name of the sequence used to generate CCBC ids. It is added via a trigger + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationNumberSeqName: String + none: ApplicationPackageFilter +} - """created by user id""" - createdBy: Int +""" +A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPackageFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `package` field.""" + package: IntFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """A description of the intake""" - description: String - - """A column to denote whether the intake is visible to the public""" - hidden: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """A column to denote whether the intake is a rolling intake""" - rollingIntake: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationPackageFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationPackageFilter!] - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationPackageFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition +""" +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyConditionalApprovalDataFilter { + """ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ConditionalApprovalDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationsConnection! + """ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ConditionalApprovalDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ConditionalApprovalDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ConditionalApprovalDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `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 - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ConditionalApprovalDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ConditionalApprovalDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ConditionalApprovalDataFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter } """ -A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -scalar UUID +input ApplicationGisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter -"""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! + """Filter by the object’s `batchId` field.""" + batchId: IntFilter - """Primary key for the gapless counter""" - rowId: Int! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Primary key for the gapless counter""" - counter: Int! + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `gisDataByBatchId` relation.""" + gisDataByBatchId: GisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """A related `gisDataByBatchId` exists.""" + gisDataByBatchIdExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationGisDataFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationGisDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationGisDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ +""" +input GisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationGisDataByBatchId` relation.""" + applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `applicationGisDataByBatchId` exist.""" + applicationGisDataByBatchIdExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! -} + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter -"""A connection to a list of `Intake` values.""" -type IntakesConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [GisDataFilter!] + + """Checks for any expressions in this list.""" + or: [GisDataFilter!] + """Negates the expression.""" + not: GisDataFilter +} + +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input GisDataToManyApplicationGisDataFilter { """ - A list of edges which contains the `Intake` and cursor to aid in pagination. + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [IntakesEdge!]! + every: ApplicationGisDataFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter - """The count of *all* `Intake` you could get from the connection.""" - totalCount: Int! + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter } -"""A `Intake` edge in the connection.""" -type IntakesEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """The `Intake` at the end of the edge.""" - node: Intake + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter + + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter } -"""A location in a connection that can be used for resuming pagination.""" -scalar Cursor +""" +A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnnouncementFilter { + """Filter by the object’s `announcementId` field.""" + announcementId: IntFilter -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """When paginating backwards, the cursor to continue.""" - startCursor: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """When paginating forwards, the cursor to continue.""" - endCursor: Cursor -} - -"""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 - ROLLING_INTAKE_ASC - ROLLING_INTAKE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter -""" -A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input IntakeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Checks for equality with the object’s `openTimestamp` field.""" - openTimestamp: Datetime + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Checks for equality with the object’s `closeTimestamp` field.""" - closeTimestamp: Datetime + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Checks for equality with the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: Int + """Filter by the object’s `isPrimary` field.""" + isPrimary: BooleanFilter - """ - Checks for equality with the object’s `applicationNumberSeqName` field. - """ - applicationNumberSeqName: String + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Filter by the object’s `announcementByAnnouncementId` relation.""" + announcementByAnnouncementId: AnnouncementFilter - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Checks for equality with the object’s `counterId` field.""" - counterId: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Checks for equality with the object’s `description` field.""" - description: String + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Checks for equality with the object’s `hidden` field.""" - hidden: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationAnnouncementFilter!] - """Checks for equality with the object’s `hiddenCode` field.""" - hiddenCode: UUID + """Checks for any expressions in this list.""" + or: [ApplicationAnnouncementFilter!] - """Checks for equality with the object’s `rollingIntake` field.""" - rollingIntake: Boolean + """Negates the expression.""" + not: ApplicationAnnouncementFilter } """ -A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ """ -input IntakeFilter { +input AnnouncementFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `openTimestamp` field.""" - openTimestamp: DatetimeFilter - - """Filter by the object’s `closeTimestamp` field.""" - closeTimestamp: DatetimeFilter - - """Filter by the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: IntFilter + """Filter by the object’s `ccbcNumbers` field.""" + ccbcNumbers: StringFilter - """Filter by the object’s `applicationNumberSeqName` field.""" - applicationNumberSeqName: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25226,26 +24429,13 @@ input IntakeFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `counterId` field.""" - counterId: IntFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `hidden` field.""" - hidden: BooleanFilter - - """Filter by the object’s `hiddenCode` field.""" - hiddenCode: UUIDFilter - - """Filter by the object’s `rollingIntake` field.""" - rollingIntake: BooleanFilter - - """Filter by the object’s `applicationsByIntakeId` relation.""" - applicationsByIntakeId: IntakeToManyApplicationFilter + """ + Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. + """ + applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter - """Some related `applicationsByIntakeId` exist.""" - applicationsByIntakeIdExist: Boolean + """Some related `applicationAnnouncementsByAnnouncementId` exist.""" + applicationAnnouncementsByAnnouncementIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25265,357 +24455,195 @@ input IntakeFilter { """A related `ccbcUserByArchivedBy` exists.""" ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `gaplessCounterByCounterId` relation.""" - gaplessCounterByCounterId: GaplessCounterFilter - - """A related `gaplessCounterByCounterId` exists.""" - gaplessCounterByCounterIdExists: Boolean - """Checks for all expressions in this list.""" - and: [IntakeFilter!] + and: [AnnouncementFilter!] """Checks for any expressions in this list.""" - or: [IntakeFilter!] + or: [AnnouncementFilter!] """Negates the expression.""" - not: IntakeFilter + not: AnnouncementFilter } """ -A filter to be used against Int fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input IntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: Int - - """Not equal to the specified value.""" - notEqualTo: Int - +input AnnouncementToManyApplicationAnnouncementFilter { """ - Not equal to the specified value, treating null like an ordinary value. + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: Int - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Int - - """Included in the specified list.""" - in: [Int!] - - """Not included in the specified list.""" - notIn: [Int!] - - """Less than the specified value.""" - lessThan: Int - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Int - - """Greater than the specified value.""" - greaterThan: Int - - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Int -} + every: ApplicationAnnouncementFilter -""" -A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ -""" -input DatetimeFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: Datetime - - """Not equal to the specified value.""" - notEqualTo: Datetime + some: ApplicationAnnouncementFilter """ - Not equal to the specified value, treating null like an ordinary value. + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: Datetime - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Datetime - - """Included in the specified list.""" - in: [Datetime!] - - """Not included in the specified list.""" - notIn: [Datetime!] - - """Less than the specified value.""" - lessThan: Datetime - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Datetime - - """Greater than the specified value.""" - greaterThan: Datetime - - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Datetime + none: ApplicationAnnouncementFilter } """ -A filter to be used against String fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ """ -input StringFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: String - - """Not equal to the specified value.""" - notEqualTo: String - - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: String - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: String - - """Included in the specified list.""" - in: [String!] - - """Not included in the specified list.""" - notIn: [String!] - - """Less than the specified value.""" - lessThan: String - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: String - - """Greater than the specified value.""" - greaterThan: String - - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: String - - """Contains the specified string (case-sensitive).""" - includes: String - - """Does not contain the specified string (case-sensitive).""" - notIncludes: String - - """Contains the specified string (case-insensitive).""" - includesInsensitive: String - - """Does not contain the specified string (case-insensitive).""" - notIncludesInsensitive: String - - """Starts with the specified string (case-sensitive).""" - startsWith: String - - """Does not start with the specified string (case-sensitive).""" - notStartsWith: String - - """Starts with the specified string (case-insensitive).""" - startsWithInsensitive: String - - """Does not start with the specified string (case-insensitive).""" - notStartsWithInsensitive: String - - """Ends with the specified string (case-sensitive).""" - endsWith: String - - """Does not end with the specified string (case-sensitive).""" - notEndsWith: String - - """Ends with the specified string (case-insensitive).""" - endsWithInsensitive: String - - """Does not end with the specified string (case-insensitive).""" - notEndsWithInsensitive: String - - """ - Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - like: String - +input ApplicationToManyApplicationGisAssessmentHhFilter { """ - Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - notLike: String + every: ApplicationGisAssessmentHhFilter """ - Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - likeInsensitive: String + some: ApplicationGisAssessmentHhFilter """ - Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - notLikeInsensitive: String - - """Equal to the specified value (case-insensitive).""" - equalToInsensitive: String + none: ApplicationGisAssessmentHhFilter +} - """Not equal to the specified value (case-insensitive).""" - notEqualToInsensitive: String +""" +A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisAssessmentHhFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Not equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - distinctFromInsensitive: String + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - notDistinctFromInsensitive: String + """Filter by the object’s `eligible` field.""" + eligible: FloatFilter - """Included in the specified list (case-insensitive).""" - inInsensitive: [String!] + """Filter by the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: FloatFilter - """Not included in the specified list (case-insensitive).""" - notInInsensitive: [String!] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Less than the specified value (case-insensitive).""" - lessThanInsensitive: String + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Less than or equal to the specified value (case-insensitive).""" - lessThanOrEqualToInsensitive: String + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Greater than the specified value (case-insensitive).""" - greaterThanInsensitive: String + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Greater than or equal to the specified value (case-insensitive).""" - greaterThanOrEqualToInsensitive: String -} + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter -""" -A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ -""" -input BooleanFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Equal to the specified value.""" - equalTo: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Not equal to the specified value.""" - notEqualTo: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Included in the specified list.""" - in: [Boolean!] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Not included in the specified list.""" - notIn: [Boolean!] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Less than the specified value.""" - lessThan: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationGisAssessmentHhFilter!] - """Greater than the specified value.""" - greaterThan: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationGisAssessmentHhFilter!] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Boolean + """Negates the expression.""" + not: ApplicationGisAssessmentHhFilter } """ -A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ +A filter to be used against Float fields. All fields are combined with a logical ‘and.’ """ -input UUIDFilter { +input FloatFilter { """ Is null (if `true` is specified) or is not null (if `false` is specified). """ isNull: Boolean """Equal to the specified value.""" - equalTo: UUID + equalTo: Float """Not equal to the specified value.""" - notEqualTo: UUID + notEqualTo: Float """ Not equal to the specified value, treating null like an ordinary value. """ - distinctFrom: UUID + distinctFrom: Float """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: UUID + notDistinctFrom: Float """Included in the specified list.""" - in: [UUID!] + in: [Float!] """Not included in the specified list.""" - notIn: [UUID!] + notIn: [Float!] """Less than the specified value.""" - lessThan: UUID + lessThan: Float """Less than or equal to the specified value.""" - lessThanOrEqualTo: UUID + lessThanOrEqualTo: Float """Greater than the specified value.""" - greaterThan: UUID + greaterThan: Float """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: UUID + greaterThanOrEqualTo: Float } """ -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ """ -input IntakeToManyApplicationFilter { +input ApplicationToManyApplicationSowDataFilter { """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationFilter + every: ApplicationSowDataFilter """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationFilter + some: ApplicationSowDataFilter """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationFilter + none: ApplicationSowDataFilter } """ -A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationFilter { +input ApplicationSowDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `ccbcNumber` field.""" - ccbcNumber: StringFilter - - """Filter by the object’s `owner` field.""" - owner: StringFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `intakeId` field.""" - intakeId: IntFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -25635,246 +24663,296 @@ input ApplicationFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `program` field.""" - program: StringFilter + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """Filter by the object’s `amendmentNumbers` field.""" - amendmentNumbers: StringFilter + """Filter by the object’s `isAmendment` field.""" + isAmendment: BooleanFilter - """Filter by the object’s `analystLead` field.""" - analystLead: StringFilter + """Filter by the object’s `sowTab2SBySowId` relation.""" + sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter - """Filter by the object’s `analystStatus` field.""" - analystStatus: StringFilter + """Some related `sowTab2SBySowId` exist.""" + sowTab2SBySowIdExist: Boolean - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Filter by the object’s `sowTab1SBySowId` relation.""" + sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter - """Filter by the object’s `externalStatus` field.""" - externalStatus: StringFilter + """Some related `sowTab1SBySowId` exist.""" + sowTab1SBySowIdExist: Boolean - """Filter by the object’s `hasRfiOpen` field.""" - hasRfiOpen: BooleanFilter + """Filter by the object’s `sowTab7SBySowId` relation.""" + sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter - """Filter by the object’s `intakeNumber` field.""" - intakeNumber: IntFilter + """Some related `sowTab7SBySowId` exist.""" + sowTab7SBySowIdExist: Boolean - """Filter by the object’s `internalDescription` field.""" - internalDescription: StringFilter + """Filter by the object’s `sowTab8SBySowId` relation.""" + sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter - """Filter by the object’s `organizationName` field.""" - organizationName: StringFilter + """Some related `sowTab8SBySowId` exist.""" + sowTab8SBySowIdExist: Boolean - """Filter by the object’s `package` field.""" - package: IntFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `projectName` field.""" - projectName: StringFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `status` field.""" - status: StringFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `statusSortFilter` field.""" - statusSortFilter: StringFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `zone` field.""" - zone: IntFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `zones` field.""" - zones: IntListFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Filter by the object’s `assessmentDataByApplicationId` relation.""" - assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `assessmentDataByApplicationId` exist.""" - assessmentDataByApplicationIdExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationSowDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationSowDataFilter!] + + """Negates the expression.""" + not: ApplicationSowDataFilter +} +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab2Filter { """ - Filter by the object’s `conditionalApprovalDataByApplicationId` relation. + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter + every: SowTab2Filter - """Some related `conditionalApprovalDataByApplicationId` exist.""" - conditionalApprovalDataByApplicationIdExist: Boolean + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter """ - Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter + none: SowTab2Filter +} - """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" - applicationGisAssessmentHhsByApplicationIdExist: Boolean +""" +A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab2Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationGisDataByApplicationId` relation.""" - applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Some related `applicationGisDataByApplicationId` exist.""" - applicationGisDataByApplicationIdExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Filter by the object’s `projectInformationDataByApplicationId` relation. - """ - projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `projectInformationDataByApplicationId` exist.""" - projectInformationDataByApplicationIdExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Filter by the object’s `applicationAnnouncedsByApplicationId` relation. - """ - applicationAnnouncedsByApplicationId: ApplicationToManyApplicationAnnouncedFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationAnnouncedsByApplicationId` exist.""" - applicationAnnouncedsByApplicationIdExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Filter by the object’s `applicationClaimsDataByApplicationId` relation. - """ - applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `applicationClaimsDataByApplicationId` exist.""" - applicationClaimsDataByApplicationIdExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. - """ - applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Some related `applicationClaimsExcelDataByApplicationId` exist.""" - applicationClaimsExcelDataByApplicationIdExist: Boolean + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. - """ - applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Some related `applicationCommunityProgressReportDataByApplicationId` exist. - """ - applicationCommunityProgressReportDataByApplicationIdExist: Boolean + """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: [SowTab2Filter!] + + """Checks for any expressions in this list.""" + or: [SowTab2Filter!] + + """Negates the expression.""" + not: SowTab2Filter +} + +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab1Filter { """ - Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter + every: SowTab1Filter """ - Some related `applicationCommunityReportExcelDataByApplicationId` exist. + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityReportExcelDataByApplicationIdExist: Boolean + some: SowTab1Filter """ - Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter + none: SowTab1Filter +} - """Some related `applicationInternalDescriptionsByApplicationId` exist.""" - applicationInternalDescriptionsByApplicationIdExist: Boolean +""" +A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab1Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Filter by the object’s `applicationMilestoneDataByApplicationId` relation. - """ - applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Some related `applicationMilestoneDataByApplicationId` exist.""" - applicationMilestoneDataByApplicationIdExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. - """ - applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" - applicationMilestoneExcelDataByApplicationIdExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `applicationSowDataByApplicationId` relation.""" - applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationSowDataByApplicationId` exist.""" - applicationSowDataByApplicationIdExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `changeRequestDataByApplicationId` relation.""" - changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `changeRequestDataByApplicationId` exist.""" - changeRequestDataByApplicationIdExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `notificationsByApplicationId` relation.""" - notificationsByApplicationId: ApplicationToManyNotificationFilter + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Some related `notificationsByApplicationId` exist.""" - notificationsByApplicationIdExist: Boolean + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Filter by the object’s `applicationPackagesByApplicationId` relation.""" - applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `applicationPackagesByApplicationId` exist.""" - applicationPackagesByApplicationIdExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. - """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Filter by the object’s `applicationProjectTypesByApplicationId` relation. - """ - applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationProjectTypesByApplicationId` exist.""" - applicationProjectTypesByApplicationIdExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `attachmentsByApplicationId` relation.""" - attachmentsByApplicationId: ApplicationToManyAttachmentFilter + """Checks for all expressions in this list.""" + and: [SowTab1Filter!] - """Some related `attachmentsByApplicationId` exist.""" - attachmentsByApplicationIdExist: Boolean + """Checks for any expressions in this list.""" + or: [SowTab1Filter!] + + """Negates the expression.""" + not: SowTab1Filter +} +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab7Filter { """ - Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + every: SowTab7Filter - """Some related `applicationAnalystLeadsByApplicationId` exist.""" - applicationAnalystLeadsByApplicationIdExist: Boolean + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter """ - Filter by the object’s `applicationAnnouncementsByApplicationId` relation. + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + none: SowTab7Filter +} - """Some related `applicationAnnouncementsByApplicationId` exist.""" - applicationAnnouncementsByApplicationIdExist: Boolean +""" +A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab7Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationFormDataByApplicationId` relation.""" - applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Some related `applicationFormDataByApplicationId` exist.""" - applicationFormDataByApplicationIdExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" - applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationRfiDataByApplicationId` exist.""" - applicationRfiDataByApplicationIdExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `applicationStatusesByApplicationId` relation.""" - applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationStatusesByApplicationId` exist.""" - applicationStatusesByApplicationIdExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `intakeByIntakeId` relation.""" - intakeByIntakeId: IntakeFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """A related `intakeByIntakeId` exists.""" - intakeByIntakeIdExists: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter + + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -25895,102 +24973,124 @@ input ApplicationFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationFilter!] + and: [SowTab7Filter!] """Checks for any expressions in this list.""" - or: [ApplicationFilter!] + or: [SowTab7Filter!] """Negates the expression.""" - not: ApplicationFilter + not: SowTab7Filter } """ -A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ """ -input IntListFilter { +input ApplicationSowDataToManySowTab8Filter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: [Int] + every: SowTab8Filter - """Not equal to the specified value.""" - notEqualTo: [Int] + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter """ - Not equal to the specified value, treating null like an ordinary value. + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: [Int] + none: SowTab8Filter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [Int] +""" +A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab8Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Less than the specified value.""" - lessThan: [Int] + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [Int] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Greater than the specified value.""" - greaterThan: [Int] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [Int] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Contains the specified list of values.""" - contains: [Int] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Contained by the specified list of values.""" - containedBy: [Int] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Overlaps the specified list of values.""" - overlaps: [Int] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Any array item is equal to the specified value.""" - anyEqualTo: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Any array item is not equal to the specified value.""" - anyNotEqualTo: Int + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Any array item is less than the specified value.""" - anyLessThan: Int + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Any array item is greater than the specified value.""" - anyGreaterThan: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [SowTab8Filter!] + + """Checks for any expressions in this list.""" + or: [SowTab8Filter!] + + """Negates the expression.""" + not: SowTab8Filter } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyAssessmentDataFilter { +input ApplicationToManyProjectInformationDataFilter { """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AssessmentDataFilter + every: ProjectInformationDataFilter """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AssessmentDataFilter + some: ProjectInformationDataFilter """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AssessmentDataFilter + none: ProjectInformationDataFilter } """ -A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input AssessmentDataFilter { +input ProjectInformationDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter @@ -26000,9 +25100,6 @@ input AssessmentDataFilter { """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `assessmentDataType` field.""" - assessmentDataType: StringFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26024,11 +25121,8 @@ input AssessmentDataFilter { """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" - assessmentTypeByAssessmentDataType: AssessmentTypeFilter - - """A related `assessmentTypeByAssessmentDataType` exists.""" - assessmentTypeByAssessmentDataTypeExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -26049,141 +25143,135 @@ input AssessmentDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [AssessmentDataFilter!] + and: [ProjectInformationDataFilter!] """Checks for any expressions in this list.""" - or: [AssessmentDataFilter!] + or: [ProjectInformationDataFilter!] """Negates the expression.""" - not: AssessmentDataFilter + not: ProjectInformationDataFilter } """ -A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ """ -input JSONFilter { +input ApplicationToManyChangeRequestDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: JSON - - """Not equal to the specified value.""" - notEqualTo: JSON + every: ChangeRequestDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: JSON + some: ChangeRequestDataFilter - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: JSON + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """Included in the specified list.""" - in: [JSON!] +""" +A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ChangeRequestDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Not included in the specified list.""" - notIn: [JSON!] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Less than the specified value.""" - lessThan: JSON + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: JSON + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than the specified value.""" - greaterThan: JSON + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: JSON + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Contains the specified JSON.""" - contains: JSON + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Contains the specified key.""" - containsKey: String + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Contains all of the specified keys.""" - containsAllKeys: [String!] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Contains any of the specified keys.""" - containsAnyKeys: [String!] + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """Contained by the specified JSON.""" - containedBy: JSON -} + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter -""" -A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). -""" -scalar JSON + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean -""" -A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" - assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `assessmentDataByAssessmentDataType` exist.""" - assessmentDataByAssessmentDataTypeExist: Boolean + """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: [AssessmentTypeFilter!] + and: [ChangeRequestDataFilter!] """Checks for any expressions in this list.""" - or: [AssessmentTypeFilter!] + or: [ChangeRequestDataFilter!] """Negates the expression.""" - not: AssessmentTypeFilter + not: ChangeRequestDataFilter } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input AssessmentTypeToManyAssessmentDataFilter { +input ApplicationToManyApplicationCommunityProgressReportDataFilter { """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AssessmentDataFilter + every: ApplicationCommunityProgressReportDataFilter """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AssessmentDataFilter + some: ApplicationCommunityProgressReportDataFilter """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AssessmentDataFilter + none: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserFilter { +input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter - - """Filter by the object’s `givenName` field.""" - givenName: StringFilter - - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `emailAddress` field.""" - emailAddress: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -26203,870 +25291,721 @@ input CcbcUserFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Filter by the object’s `applicationsByCreatedBy` relation.""" - applicationsByCreatedBy: CcbcUserToManyApplicationFilter + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Some related `applicationsByCreatedBy` exist.""" - applicationsByCreatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `applicationsByUpdatedBy` relation.""" - applicationsByUpdatedBy: CcbcUserToManyApplicationFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `applicationsByUpdatedBy` exist.""" - applicationsByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `applicationsByArchivedBy` relation.""" - applicationsByArchivedBy: CcbcUserToManyApplicationFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `applicationsByArchivedBy` exist.""" - applicationsByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `assessmentDataByCreatedBy` relation.""" - assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `assessmentDataByCreatedBy` exist.""" - assessmentDataByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" - assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `assessmentDataByUpdatedBy` exist.""" - assessmentDataByUpdatedByExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationCommunityProgressReportDataFilter!] - """Filter by the object’s `assessmentDataByArchivedBy` relation.""" - assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter + """Checks for any expressions in this list.""" + or: [ApplicationCommunityProgressReportDataFilter!] - """Some related `assessmentDataByArchivedBy` exist.""" - assessmentDataByArchivedByExist: Boolean + """Negates the expression.""" + not: ApplicationCommunityProgressReportDataFilter +} - """Filter by the object’s `announcementsByCreatedBy` relation.""" - announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter - """Some related `announcementsByCreatedBy` exist.""" - announcementsByCreatedByExist: Boolean + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter - """Filter by the object’s `announcementsByUpdatedBy` relation.""" - announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} - """Some related `announcementsByUpdatedBy` exist.""" - announcementsByUpdatedByExist: Boolean +""" +A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationCommunityReportExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `announcementsByArchivedBy` relation.""" - announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `announcementsByArchivedBy` exist.""" - announcementsByArchivedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" - conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `conditionalApprovalDataByCreatedBy` exist.""" - conditionalApprovalDataByCreatedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" - conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `conditionalApprovalDataByUpdatedBy` exist.""" - conditionalApprovalDataByUpdatedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" - conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `conditionalApprovalDataByArchivedBy` exist.""" - conditionalApprovalDataByArchivedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `formDataByCreatedBy` relation.""" - formDataByCreatedBy: CcbcUserToManyFormDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `formDataByCreatedBy` exist.""" - formDataByCreatedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `formDataByUpdatedBy` relation.""" - formDataByUpdatedBy: CcbcUserToManyFormDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `formDataByUpdatedBy` exist.""" - formDataByUpdatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `formDataByArchivedBy` relation.""" - formDataByArchivedBy: CcbcUserToManyFormDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `formDataByArchivedBy` exist.""" - formDataByArchivedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. - """ - applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" - applicationGisAssessmentHhsByCreatedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationCommunityReportExcelDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationCommunityReportExcelDataFilter!] + + """Negates the expression.""" + not: ApplicationCommunityReportExcelDataFilter +} +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsDataFilter { """ - Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + every: ApplicationClaimsDataFilter - """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" - applicationGisAssessmentHhsByUpdatedByExist: Boolean + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter """ - Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + none: ApplicationClaimsDataFilter +} - """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" - applicationGisAssessmentHhsByArchivedByExist: Boolean +""" +A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationClaimsDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" - applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationGisDataByCreatedBy` exist.""" - applicationGisDataByCreatedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" - applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Some related `applicationGisDataByUpdatedBy` exist.""" - applicationGisDataByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" - applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `applicationGisDataByArchivedBy` exist.""" - applicationGisDataByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" - projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `projectInformationDataByCreatedBy` exist.""" - projectInformationDataByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" - projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `projectInformationDataByUpdatedBy` exist.""" - projectInformationDataByUpdatedByExist: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" - projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `projectInformationDataByArchivedBy` exist.""" - projectInformationDataByArchivedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `rfiDataByCreatedBy` relation.""" - rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `rfiDataByCreatedBy` exist.""" - rfiDataByCreatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `rfiDataByUpdatedBy` relation.""" - rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `rfiDataByUpdatedBy` exist.""" - rfiDataByUpdatedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `rfiDataByArchivedBy` relation.""" - rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `rfiDataByArchivedBy` exist.""" - rfiDataByArchivedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `intakesByCreatedBy` relation.""" - intakesByCreatedBy: CcbcUserToManyIntakeFilter + """Checks for all expressions in this list.""" + and: [ApplicationClaimsDataFilter!] - """Some related `intakesByCreatedBy` exist.""" - intakesByCreatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationClaimsDataFilter!] - """Filter by the object’s `intakesByUpdatedBy` relation.""" - intakesByUpdatedBy: CcbcUserToManyIntakeFilter + """Negates the expression.""" + not: ApplicationClaimsDataFilter +} - """Some related `intakesByUpdatedBy` exist.""" - intakesByUpdatedByExist: Boolean +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Filter by the object’s `intakesByArchivedBy` relation.""" - intakesByArchivedBy: CcbcUserToManyIntakeFilter + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter - """Some related `intakesByArchivedBy` exist.""" - intakesByArchivedByExist: Boolean + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter +} - """Filter by the object’s `applicationAnnouncedsByCreatedBy` relation.""" - applicationAnnouncedsByCreatedBy: CcbcUserToManyApplicationAnnouncedFilter +""" +A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationClaimsExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `applicationAnnouncedsByCreatedBy` exist.""" - applicationAnnouncedsByCreatedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `applicationAnnouncedsByUpdatedBy` relation.""" - applicationAnnouncedsByUpdatedBy: CcbcUserToManyApplicationAnnouncedFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Some related `applicationAnnouncedsByUpdatedBy` exist.""" - applicationAnnouncedsByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `applicationAnnouncedsByArchivedBy` relation.""" - applicationAnnouncedsByArchivedBy: CcbcUserToManyApplicationAnnouncedFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `applicationAnnouncedsByArchivedBy` exist.""" - applicationAnnouncedsByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" - applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `applicationClaimsDataByCreatedBy` exist.""" - applicationClaimsDataByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" - applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `applicationClaimsDataByUpdatedBy` exist.""" - applicationClaimsDataByUpdatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" - applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `applicationClaimsDataByArchivedBy` exist.""" - applicationClaimsDataByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. - """ - applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" - applicationClaimsExcelDataByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. - """ - applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" - applicationClaimsExcelDataByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. - """ - applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" - applicationClaimsExcelDataByArchivedByExist: Boolean + """Checks for all expressions in this list.""" + and: [ApplicationClaimsExcelDataFilter!] - """ - Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. - """ - applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """Checks for any expressions in this list.""" + or: [ApplicationClaimsExcelDataFilter!] - """ - Some related `applicationCommunityProgressReportDataByCreatedBy` exist. - """ - applicationCommunityProgressReportDataByCreatedByExist: Boolean + """Negates the expression.""" + not: ApplicationClaimsExcelDataFilter +} +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneDataFilter { """ - Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + every: ApplicationMilestoneDataFilter """ - Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityProgressReportDataByUpdatedByExist: Boolean + some: ApplicationMilestoneDataFilter """ - Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + none: ApplicationMilestoneDataFilter +} - """ - Some related `applicationCommunityProgressReportDataByArchivedBy` exist. - """ - applicationCommunityProgressReportDataByArchivedByExist: Boolean +""" +A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. - """ - applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" - applicationCommunityReportExcelDataByCreatedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. - """ - applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" - applicationCommunityReportExcelDataByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. - """ - applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" - applicationCommunityReportExcelDataByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. - """ - applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" - applicationInternalDescriptionsByCreatedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. - """ - applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" - applicationInternalDescriptionsByUpdatedByExist: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """ - Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. - """ - applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" - applicationInternalDescriptionsByArchivedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" - applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `applicationMilestoneDataByCreatedBy` exist.""" - applicationMilestoneDataByCreatedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" - applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `applicationMilestoneDataByUpdatedBy` exist.""" - applicationMilestoneDataByUpdatedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. - """ - applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `applicationMilestoneDataByArchivedBy` exist.""" - applicationMilestoneDataByArchivedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. - """ - applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneDataFilter!] - """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" - applicationMilestoneExcelDataByCreatedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneDataFilter!] + + """Negates the expression.""" + not: ApplicationMilestoneDataFilter +} +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneExcelDataFilter { """ - Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + every: ApplicationMilestoneExcelDataFilter - """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" - applicationMilestoneExcelDataByUpdatedByExist: Boolean + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter """ - Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + none: ApplicationMilestoneExcelDataFilter +} - """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" - applicationMilestoneExcelDataByArchivedByExist: Boolean +""" +A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" - applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationSowDataByCreatedBy` exist.""" - applicationSowDataByCreatedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" - applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationSowDataByUpdatedBy` exist.""" - applicationSowDataByUpdatedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" - applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationSowDataByArchivedBy` exist.""" - applicationSowDataByArchivedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCreatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByCreatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `cbcApplicationPendingChangeRequestsByCreatedBy` exist.""" - cbcApplicationPendingChangeRequestsByCreatedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByUpdatedBy` relation. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `cbcApplicationPendingChangeRequestsByUpdatedBy` exist.""" - cbcApplicationPendingChangeRequestsByUpdatedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByArchivedBy` relation. - """ - cbcApplicationPendingChangeRequestsByArchivedBy: CcbcUserToManyCbcApplicationPendingChangeRequestFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `cbcApplicationPendingChangeRequestsByArchivedBy` exist.""" - cbcApplicationPendingChangeRequestsByArchivedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" - cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `cbcProjectsByCreatedBy` exist.""" - cbcProjectsByCreatedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" - cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `cbcProjectsByUpdatedBy` exist.""" - cbcProjectsByUpdatedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" - cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneExcelDataFilter!] - """Some related `cbcProjectsByArchivedBy` exist.""" - cbcProjectsByArchivedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneExcelDataFilter!] - """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" - changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + """Negates the expression.""" + not: ApplicationMilestoneExcelDataFilter +} - """Some related `changeRequestDataByCreatedBy` exist.""" - changeRequestDataByCreatedByExist: Boolean +""" +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationInternalDescriptionFilter { + """ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationInternalDescriptionFilter - """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" - changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter - """Some related `changeRequestDataByUpdatedBy` exist.""" - changeRequestDataByUpdatedByExist: Boolean + """ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationInternalDescriptionFilter +} - """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" - changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter +""" +A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `changeRequestDataByArchivedBy` exist.""" - changeRequestDataByArchivedByExist: Boolean + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `notificationsByCreatedBy` relation.""" - notificationsByCreatedBy: CcbcUserToManyNotificationFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """Some related `notificationsByCreatedBy` exist.""" - notificationsByCreatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `notificationsByUpdatedBy` relation.""" - notificationsByUpdatedBy: CcbcUserToManyNotificationFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `notificationsByUpdatedBy` exist.""" - notificationsByUpdatedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `notificationsByArchivedBy` relation.""" - notificationsByArchivedBy: CcbcUserToManyNotificationFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Some related `notificationsByArchivedBy` exist.""" - notificationsByArchivedByExist: Boolean + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" - applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Some related `applicationPackagesByCreatedBy` exist.""" - applicationPackagesByCreatedByExist: Boolean + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" - applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Some related `applicationPackagesByUpdatedBy` exist.""" - applicationPackagesByUpdatedByExist: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" - applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Some related `applicationPackagesByArchivedBy` exist.""" - applicationPackagesByArchivedByExist: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. - """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationInternalDescriptionFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationInternalDescriptionFilter!] + + """Negates the expression.""" + not: ApplicationInternalDescriptionFilter +} +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationProjectTypeFilter { """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + every: ApplicationProjectTypeFilter - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + none: ApplicationProjectTypeFilter +} - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean +""" +A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationProjectTypeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" - applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `applicationProjectTypesByCreatedBy` exist.""" - applicationProjectTypesByCreatedByExist: Boolean + """Filter by the object’s `projectType` field.""" + projectType: StringFilter - """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" - applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Some related `applicationProjectTypesByUpdatedBy` exist.""" - applicationProjectTypesByUpdatedByExist: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" - applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Some related `applicationProjectTypesByArchivedBy` exist.""" - applicationProjectTypesByArchivedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" - ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `ccbcUsersByCreatedBy` exist.""" - ccbcUsersByCreatedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" - ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `ccbcUsersByUpdatedBy` exist.""" - ccbcUsersByUpdatedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" - ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Some related `ccbcUsersByArchivedBy` exist.""" - ccbcUsersByArchivedByExist: Boolean + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `attachmentsByCreatedBy` relation.""" - attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Some related `attachmentsByCreatedBy` exist.""" - attachmentsByCreatedByExist: Boolean + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `attachmentsByUpdatedBy` relation.""" - attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Some related `attachmentsByUpdatedBy` exist.""" - attachmentsByUpdatedByExist: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Filter by the object’s `attachmentsByArchivedBy` relation.""" - attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + """Checks for all expressions in this list.""" + and: [ApplicationProjectTypeFilter!] - """Some related `attachmentsByArchivedBy` exist.""" - attachmentsByArchivedByExist: Boolean + """Checks for any expressions in this list.""" + or: [ApplicationProjectTypeFilter!] - """Filter by the object’s `gisDataByCreatedBy` relation.""" - gisDataByCreatedBy: CcbcUserToManyGisDataFilter + """Negates the expression.""" + not: ApplicationProjectTypeFilter +} - """Some related `gisDataByCreatedBy` exist.""" - gisDataByCreatedByExist: Boolean +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Filter by the object’s `gisDataByUpdatedBy` relation.""" - gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """Some related `gisDataByUpdatedBy` exist.""" - gisDataByUpdatedByExist: Boolean + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """Filter by the object’s `gisDataByArchivedBy` relation.""" - gisDataByArchivedBy: CcbcUserToManyGisDataFilter +""" +A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input NotificationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `gisDataByArchivedBy` exist.""" - gisDataByArchivedByExist: Boolean + """Filter by the object’s `notificationType` field.""" + notificationType: StringFilter - """Filter by the object’s `analystsByCreatedBy` relation.""" - analystsByCreatedBy: CcbcUserToManyAnalystFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Some related `analystsByCreatedBy` exist.""" - analystsByCreatedByExist: Boolean + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `analystsByUpdatedBy` relation.""" - analystsByUpdatedBy: CcbcUserToManyAnalystFilter + """Filter by the object’s `emailRecordId` field.""" + emailRecordId: IntFilter - """Some related `analystsByUpdatedBy` exist.""" - analystsByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `analystsByArchivedBy` relation.""" - analystsByArchivedBy: CcbcUserToManyAnalystFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `analystsByArchivedBy` exist.""" - analystsByArchivedByExist: Boolean + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """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 `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 `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 `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 `cbcDataChangeReasonsByCreatedBy` relation.""" - cbcDataChangeReasonsByCreatedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByCreatedBy` exist.""" - cbcDataChangeReasonsByCreatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByUpdatedBy` relation.""" - cbcDataChangeReasonsByUpdatedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByUpdatedBy` exist.""" - cbcDataChangeReasonsByUpdatedByExist: Boolean - - """Filter by the object’s `cbcDataChangeReasonsByArchivedBy` relation.""" - cbcDataChangeReasonsByArchivedBy: CcbcUserToManyCbcDataChangeReasonFilter - - """Some related `cbcDataChangeReasonsByArchivedBy` exist.""" - cbcDataChangeReasonsByArchivedByExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByCreatedBy` relation.""" - cbcProjectCommunitiesByCreatedBy: CcbcUserToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByCreatedBy` exist.""" - cbcProjectCommunitiesByCreatedByExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByUpdatedBy` relation.""" - cbcProjectCommunitiesByUpdatedBy: CcbcUserToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByUpdatedBy` exist.""" - cbcProjectCommunitiesByUpdatedByExist: Boolean - - """Filter by the object’s `cbcProjectCommunitiesByArchivedBy` relation.""" - cbcProjectCommunitiesByArchivedBy: CcbcUserToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByArchivedBy` exist.""" - cbcProjectCommunitiesByArchivedByExist: Boolean - - """Filter by the object’s `communitiesSourceDataByCreatedBy` relation.""" - communitiesSourceDataByCreatedBy: CcbcUserToManyCommunitiesSourceDataFilter - - """Some related `communitiesSourceDataByCreatedBy` exist.""" - communitiesSourceDataByCreatedByExist: Boolean - - """Filter by the object’s `communitiesSourceDataByUpdatedBy` relation.""" - communitiesSourceDataByUpdatedBy: CcbcUserToManyCommunitiesSourceDataFilter - - """Some related `communitiesSourceDataByUpdatedBy` exist.""" - communitiesSourceDataByUpdatedByExist: Boolean - - """Filter by the object’s `communitiesSourceDataByArchivedBy` relation.""" - communitiesSourceDataByArchivedBy: CcbcUserToManyCommunitiesSourceDataFilter - - """Some related `communitiesSourceDataByArchivedBy` exist.""" - communitiesSourceDataByArchivedByExist: Boolean - - """Filter by the object’s `emailRecordsByCreatedBy` relation.""" - emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter - - """Some related `emailRecordsByCreatedBy` exist.""" - emailRecordsByCreatedByExist: Boolean - - """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" - emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter - - """Some related `emailRecordsByUpdatedBy` exist.""" - emailRecordsByUpdatedByExist: Boolean - - """Filter by the object’s `emailRecordsByArchivedBy` relation.""" - emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter - - """Some related `emailRecordsByArchivedBy` exist.""" - emailRecordsByArchivedByExist: Boolean - - """Filter by the object’s `recordVersionsByCreatedBy` relation.""" - recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter - - """Some related `recordVersionsByCreatedBy` exist.""" - recordVersionsByCreatedByExist: Boolean - - """Filter by the object’s `reportingGcpesByCreatedBy` relation.""" - reportingGcpesByCreatedBy: CcbcUserToManyReportingGcpeFilter - - """Some related `reportingGcpesByCreatedBy` exist.""" - reportingGcpesByCreatedByExist: Boolean - - """Filter by the object’s `reportingGcpesByUpdatedBy` relation.""" - reportingGcpesByUpdatedBy: CcbcUserToManyReportingGcpeFilter - - """Some related `reportingGcpesByUpdatedBy` exist.""" - reportingGcpesByUpdatedByExist: Boolean - - """Filter by the object’s `reportingGcpesByArchivedBy` relation.""" - reportingGcpesByArchivedBy: CcbcUserToManyReportingGcpeFilter - - """Some related `reportingGcpesByArchivedBy` exist.""" - reportingGcpesByArchivedByExist: 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 `sowTab2SByCreatedBy` relation.""" - sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter - - """Some related `sowTab2SByCreatedBy` exist.""" - sowTab2SByCreatedByExist: Boolean - - """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" - sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter - - """Some related `sowTab2SByUpdatedBy` exist.""" - sowTab2SByUpdatedByExist: Boolean - - """Filter by the object’s `sowTab2SByArchivedBy` relation.""" - sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter - - """Some related `sowTab2SByArchivedBy` exist.""" - sowTab2SByArchivedByExist: Boolean - - """Filter by the object’s `sowTab7SByCreatedBy` relation.""" - sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter - - """Some related `sowTab7SByCreatedBy` exist.""" - sowTab7SByCreatedByExist: Boolean - - """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" - sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter - - """Some related `sowTab7SByUpdatedBy` exist.""" - sowTab7SByUpdatedByExist: Boolean - - """Filter by the object’s `sowTab7SByArchivedBy` relation.""" - sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter - - """Some related `sowTab7SByArchivedBy` exist.""" - sowTab7SByArchivedByExist: Boolean - - """Filter by the object’s `sowTab8SByCreatedBy` relation.""" - sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter - - """Some related `sowTab8SByCreatedBy` exist.""" - sowTab8SByCreatedByExist: Boolean + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" - sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Some related `sowTab8SByUpdatedBy` exist.""" - sowTab8SByUpdatedByExist: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `sowTab8SByArchivedBy` relation.""" - sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `sowTab8SByArchivedBy` exist.""" - sowTab8SByArchivedByExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `keycloakJwtsBySub` relation.""" - keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + """Filter by the object’s `emailRecordByEmailRecordId` relation.""" + emailRecordByEmailRecordId: EmailRecordFilter - """Some related `keycloakJwtsBySub` exist.""" - keycloakJwtsBySubExist: Boolean + """A related `emailRecordByEmailRecordId` exists.""" + emailRecordByEmailRecordIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27087,84 +26026,36 @@ input CcbcUserFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CcbcUserFilter!] + and: [NotificationFilter!] """Checks for any expressions in this list.""" - or: [CcbcUserFilter!] + or: [NotificationFilter!] """Negates the expression.""" - not: CcbcUserFilter -} - -""" -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter - - """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFilter - - """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFilter + not: NotificationFilter } """ -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter - - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter - - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} +input EmailRecordFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter -""" -A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAnnouncementFilter { - """ - Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnnouncementFilter + """Filter by the object’s `toEmail` field.""" + toEmail: StringFilter - """ - Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnnouncementFilter + """Filter by the object’s `ccEmail` field.""" + ccEmail: StringFilter - """ - No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnnouncementFilter -} + """Filter by the object’s `subject` field.""" + subject: StringFilter -""" -A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ -""" -input AnnouncementFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `body` field.""" + body: StringFilter - """Filter by the object’s `ccbcNumbers` field.""" - ccbcNumbers: StringFilter + """Filter by the object’s `messageId` field.""" + messageId: StringFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter @@ -27187,13 +26078,11 @@ input AnnouncementFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """ - Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. - """ - applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter + """Filter by the object’s `notificationsByEmailRecordId` relation.""" + notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - """Some related `applicationAnnouncementsByAnnouncementId` exist.""" - applicationAnnouncementsByAnnouncementIdExist: Boolean + """Some related `notificationsByEmailRecordId` exist.""" + notificationsByEmailRecordIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27214,45 +26103,71 @@ input AnnouncementFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [AnnouncementFilter!] + and: [EmailRecordFilter!] """Checks for any expressions in this list.""" - or: [AnnouncementFilter!] + or: [EmailRecordFilter!] """Negates the expression.""" - not: AnnouncementFilter + not: EmailRecordFilter } """ -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ """ -input AnnouncementToManyApplicationAnnouncementFilter { +input EmailRecordToManyNotificationFilter { """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationAnnouncementFilter + every: NotificationFilter """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationAnnouncementFilter + some: NotificationFilter """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationAnnouncementFilter + none: NotificationFilter } """ -A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationAnnouncementFilter { - """Filter by the object’s `announcementId` field.""" - announcementId: IntFilter +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter + + """Filter by the object’s `comment` field.""" + comment: StringFilter + """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27271,18 +26186,12 @@ input ApplicationAnnouncementFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `isPrimary` field.""" - isPrimary: BooleanFilter - - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter - - """Filter by the object’s `announcementByAnnouncementId` relation.""" - announcementByAnnouncementId: AnnouncementFilter - """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27302,47 +26211,47 @@ input ApplicationAnnouncementFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationAnnouncementFilter!] + and: [ApplicationPendingChangeRequestFilter!] """Checks for any expressions in this list.""" - or: [ApplicationAnnouncementFilter!] + or: [ApplicationPendingChangeRequestFilter!] """Negates the expression.""" - not: ApplicationAnnouncementFilter + not: ApplicationPendingChangeRequestFilter } """ -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyConditionalApprovalDataFilter { +input ApplicationToManyApplicationAnnouncedFilter { """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ConditionalApprovalDataFilter + every: ApplicationAnnouncedFilter """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ConditionalApprovalDataFilter + some: ApplicationAnnouncedFilter """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ConditionalApprovalDataFilter + none: ApplicationAnnouncedFilter } """ -A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ -input ConditionalApprovalDataFilter { +input ApplicationAnnouncedFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `announced` field.""" + announced: BooleanFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27387,202 +26296,125 @@ input ConditionalApprovalDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ConditionalApprovalDataFilter!] + and: [ApplicationAnnouncedFilter!] """Checks for any expressions in this list.""" - or: [ConditionalApprovalDataFilter!] + or: [ApplicationAnnouncedFilter!] """Negates the expression.""" - not: ConditionalApprovalDataFilter + not: ApplicationAnnouncedFilter } """ -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyFormDataFilter { +input GaplessCounterFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `counter` field.""" + counter: IntFilter + + """Filter by the object’s `intakesByCounterId` relation.""" + intakesByCounterId: GaplessCounterToManyIntakeFilter + + """Some related `intakesByCounterId` exist.""" + intakesByCounterIdExist: Boolean + + """Checks for all expressions in this list.""" + and: [GaplessCounterFilter!] + + """Checks for any expressions in this list.""" + or: [GaplessCounterFilter!] + + """Negates the expression.""" + not: GaplessCounterFilter +} + +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterToManyIntakeFilter { """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FormDataFilter + every: IntakeFilter """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FormDataFilter + some: IntakeFilter """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FormDataFilter + none: IntakeFilter } """ -A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input FormDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `lastEditedPage` field.""" - lastEditedPage: StringFilter - - """Filter by the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `formSchemaId` field.""" - formSchemaId: IntFilter - - """Filter by the object’s `reasonForChange` field.""" - reasonForChange: StringFilter - - """Filter by the object’s `isEditable` field.""" - isEditable: BooleanFilter - - """Filter by the object’s `applicationFormDataByFormDataId` relation.""" - applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter - - """Some related `applicationFormDataByFormDataId` exist.""" - applicationFormDataByFormDataIdExist: Boolean - +input CcbcUserToManyApplicationFilter { """ - Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter - - """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" - formDataStatusTypeByFormDataStatusTypeIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Filter by the object’s `formByFormSchemaId` relation.""" - formByFormSchemaId: FormFilter - - """A related `formByFormSchemaId` exists.""" - formByFormSchemaIdExists: Boolean - - """Checks for all expressions in this list.""" - and: [FormDataFilter!] + every: ApplicationFilter - """Checks for any expressions in this list.""" - or: [FormDataFilter!] + """ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFilter - """Negates the expression.""" - not: FormDataFilter + """ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFilter } """ -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ """ -input FormDataToManyApplicationFormDataFilter { +input CcbcUserToManyApplicationStatusFilter { """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationFormDataFilter + every: ApplicationStatusFilter """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationFormDataFilter + some: ApplicationStatusFilter """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationFormDataFilter -} - -""" -A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFormDataFilter { - """Filter by the object’s `formDataId` field.""" - formDataId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `formDataByFormDataId` relation.""" - formDataByFormDataId: FormDataFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """Checks for all expressions in this list.""" - and: [ApplicationFormDataFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationFormDataFilter!] - - """Negates the expression.""" - not: ApplicationFormDataFilter + none: ApplicationStatusFilter } """ -A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ """ -input FormDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" - formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter - - """Some related `formDataByFormDataStatusTypeId` exist.""" - formDataByFormDataStatusTypeIdExist: Boolean - - """Checks for all expressions in this list.""" - and: [FormDataStatusTypeFilter!] +input CcbcUserToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Checks for any expressions in this list.""" - or: [FormDataStatusTypeFilter!] + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Negates the expression.""" - not: FormDataStatusTypeFilter + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter } """ A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input FormDataStatusTypeToManyFormDataFilter { +input CcbcUserToManyFormDataFilter { """ Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ @@ -27600,147 +26432,152 @@ input FormDataStatusTypeToManyFormDataFilter { } """ -A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ """ -input FormFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `slug` field.""" - slug: StringFilter - - """Filter by the object’s `jsonSchema` field.""" - jsonSchema: JSONFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `formType` field.""" - formType: StringFilter - - """Filter by the object’s `formDataByFormSchemaId` relation.""" - formDataByFormSchemaId: FormToManyFormDataFilter - - """Some related `formDataByFormSchemaId` exist.""" - formDataByFormSchemaIdExist: Boolean - - """Filter by the object’s `formTypeByFormType` relation.""" - formTypeByFormType: FormTypeFilter - - """A related `formTypeByFormType` exists.""" - formTypeByFormTypeExists: Boolean - - """Checks for all expressions in this list.""" - and: [FormFilter!] +input CcbcUserToManyAnalystFilter { + """ + Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnalystFilter - """Checks for any expressions in this list.""" - or: [FormFilter!] + """ + Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnalystFilter - """Negates the expression.""" - not: FormFilter + """ + No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnalystFilter } """ -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ """ -input FormToManyFormDataFilter { +input CcbcUserToManyApplicationAnalystLeadFilter { """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FormDataFilter + every: ApplicationAnalystLeadFilter """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FormDataFilter + some: ApplicationAnalystLeadFilter """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FormDataFilter + none: ApplicationAnalystLeadFilter } """ -A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input FormTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter - - """Filter by the object’s `description` field.""" - description: StringFilter +input CcbcUserToManyRfiDataFilter { + """ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RfiDataFilter - """Filter by the object’s `formsByFormType` relation.""" - formsByFormType: FormTypeToManyFormFilter + """ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RfiDataFilter - """Some related `formsByFormType` exist.""" - formsByFormTypeExist: Boolean + """ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RfiDataFilter +} - """Checks for all expressions in this list.""" - and: [FormTypeFilter!] +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAssessmentDataFilter { + """ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AssessmentDataFilter - """Checks for any expressions in this list.""" - or: [FormTypeFilter!] + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """Negates the expression.""" - not: FormTypeFilter + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter } """ -A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ """ -input FormTypeToManyFormFilter { +input CcbcUserToManyApplicationPackageFilter { """ - Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FormFilter + every: ApplicationPackageFilter """ - Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FormFilter + some: ApplicationPackageFilter """ - No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FormFilter + none: ApplicationPackageFilter } """ -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationGisAssessmentHhFilter { +input CcbcUserToManyRecordVersionFilter { """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationGisAssessmentHhFilter + every: RecordVersionFilter """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationGisAssessmentHhFilter + some: RecordVersionFilter """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationGisAssessmentHhFilter + none: RecordVersionFilter } """ -A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationGisAssessmentHhFilter { +input RecordVersionFilter { """Filter by the object’s `rowId` field.""" - rowId: IntFilter + rowId: BigIntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """Filter by the object’s `eligible` field.""" - eligible: FloatFilter + """Filter by the object’s `oldRecordId` field.""" + oldRecordId: UUIDFilter - """Filter by the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: FloatFilter + """Filter by the object’s `op` field.""" + op: OperationFilter + + """Filter by the object’s `ts` field.""" + ts: DatetimeFilter + + """Filter by the object’s `tableOid` field.""" + tableOid: BigFloatFilter + + """Filter by the object’s `tableSchema` field.""" + tableSchema: StringFilter + + """Filter by the object’s `tableName` field.""" + tableName: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -27748,20 +26585,11 @@ input ApplicationGisAssessmentHhFilter { """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 `record` field.""" + record: JSONFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -27769,244 +26597,339 @@ input ApplicationGisAssessmentHhFilter { """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: [ApplicationGisAssessmentHhFilter!] + and: [RecordVersionFilter!] """Checks for any expressions in this list.""" - or: [ApplicationGisAssessmentHhFilter!] + or: [RecordVersionFilter!] """Negates the expression.""" - not: ApplicationGisAssessmentHhFilter + not: RecordVersionFilter } """ -A filter to be used against Float fields. All fields are combined with a logical ‘and.’ +A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ """ -input FloatFilter { +input BigIntFilter { """ Is null (if `true` is specified) or is not null (if `false` is specified). """ isNull: Boolean """Equal to the specified value.""" - equalTo: Float + equalTo: BigInt """Not equal to the specified value.""" - notEqualTo: Float + notEqualTo: BigInt """ Not equal to the specified value, treating null like an ordinary value. """ - distinctFrom: Float + distinctFrom: BigInt """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Float + notDistinctFrom: BigInt """Included in the specified list.""" - in: [Float!] + in: [BigInt!] """Not included in the specified list.""" - notIn: [Float!] + notIn: [BigInt!] """Less than the specified value.""" - lessThan: Float + lessThan: BigInt """Less than or equal to the specified value.""" - lessThanOrEqualTo: Float + lessThanOrEqualTo: BigInt """Greater than the specified value.""" - greaterThan: Float + greaterThan: BigInt """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Float + greaterThanOrEqualTo: BigInt } """ -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +A signed eight-byte integer. The upper big integer values are greater than the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. """ -input CcbcUserToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter +scalar BigInt +""" +A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +""" +input OperationFilter { """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - some: ApplicationGisDataFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: Operation + + """Not equal to the specified value.""" + notEqualTo: Operation """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ApplicationGisDataFilter -} + distinctFrom: Operation -""" -A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationGisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Operation - """Filter by the object’s `batchId` field.""" - batchId: IntFilter + """Included in the specified list.""" + in: [Operation!] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Not included in the specified list.""" + notIn: [Operation!] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Less than the specified value.""" + lessThan: Operation - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Operation - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Greater than the specified value.""" + greaterThan: Operation - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Operation +} - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter +enum Operation { + INSERT + UPDATE + DELETE + TRUNCATE +} - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter +""" +A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ +""" +input BigFloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Equal to the specified value.""" + equalTo: BigFloat - """Filter by the object’s `gisDataByBatchId` relation.""" - gisDataByBatchId: GisDataFilter + """Not equal to the specified value.""" + notEqualTo: BigFloat - """A related `gisDataByBatchId` exists.""" - gisDataByBatchIdExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigFloat - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigFloat - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Included in the specified list.""" + in: [BigFloat!] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Not included in the specified list.""" + notIn: [BigFloat!] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Less than the specified value.""" + lessThan: BigFloat - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigFloat - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Greater than the specified value.""" + greaterThan: BigFloat - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigFloat +} - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean +""" +A floating point number that requires more precision than IEEE 754 binary 64 +""" +scalar BigFloat - """Checks for all expressions in this list.""" - and: [ApplicationGisDataFilter!] +""" +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyConditionalApprovalDataFilter { + """ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ConditionalApprovalDataFilter - """Checks for any expressions in this list.""" - or: [ApplicationGisDataFilter!] + """ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ConditionalApprovalDataFilter - """Negates the expression.""" - not: ApplicationGisDataFilter + """ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ConditionalApprovalDataFilter } """ -A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ """ -input GisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManyGisDataFilter { + """ + Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: GisDataFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: GisDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: GisDataFilter +} - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter +} - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter +""" +A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnnouncementFilter { + """ + Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnnouncementFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnnouncementFilter - """Filter by the object’s `applicationGisDataByBatchId` relation.""" - applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter + """ + No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnnouncementFilter +} - """Some related `applicationGisDataByBatchId` exist.""" - applicationGisDataByBatchIdExist: Boolean +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +""" +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationGisAssessmentHhFilter { + """ + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisAssessmentHhFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisAssessmentHhFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisAssessmentHhFilter +} - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """Checks for all expressions in this list.""" - and: [GisDataFilter!] + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """Checks for any expressions in this list.""" - or: [GisDataFilter!] + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} - """Negates the expression.""" - not: GisDataFilter +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab2Filter { + """ + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab2Filter + + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter + + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter } """ -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ """ -input GisDataToManyApplicationGisDataFilter { +input CcbcUserToManySowTab1Filter { """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationGisDataFilter + every: SowTab1Filter """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationGisDataFilter + some: SowTab1Filter """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationGisDataFilter + none: SowTab1Filter } """ @@ -28030,105 +26953,217 @@ input CcbcUserToManyProjectInformationDataFilter { } """ -A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ """ -input ProjectInformationDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter +""" +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationCommunityProgressReportDataFilter { + """ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityProgressReportDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityProgressReportDataFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityProgressReportDataFilter +} - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationClaimsDataFilter { + """ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter - """Checks for all expressions in this list.""" - and: [ProjectInformationDataFilter!] + """ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsDataFilter +} - """Checks for any expressions in this list.""" - or: [ProjectInformationDataFilter!] +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Negates the expression.""" - not: ProjectInformationDataFilter + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter + + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter } """ -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyRfiDataFilter { +input CcbcUserToManyApplicationMilestoneDataFilter { """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RfiDataFilter + every: ApplicationMilestoneDataFilter """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RfiDataFilter + some: ApplicationMilestoneDataFilter """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RfiDataFilter + none: ApplicationMilestoneDataFilter } """ -A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ """ -input RfiDataFilter { +input CcbcUserToManyApplicationMilestoneExcelDataFilter { + """ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneExcelDataFilter + + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter + + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} + +""" +A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectFilter { + """ + Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectFilter + + """ + Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectFilter + + """ + No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectFilter +} + +""" +A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `rfiNumber` field.""" - rfiNumber: StringFilter - """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: StringFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28148,20 +27183,6 @@ input RfiDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" - applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter - - """Some related `applicationRfiDataByRfiDataId` exist.""" - applicationRfiDataByRfiDataIdExist: Boolean - - """ - Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. - """ - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter - - """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" - rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28181,159 +27202,147 @@ input RfiDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [RfiDataFilter!] + and: [CbcProjectFilter!] """Checks for any expressions in this list.""" - or: [RfiDataFilter!] + or: [CbcProjectFilter!] """Negates the expression.""" - not: RfiDataFilter + not: CbcProjectFilter } """ -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ """ -input RfiDataToManyApplicationRfiDataFilter { +input CcbcUserToManyApplicationInternalDescriptionFilter { """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationRfiDataFilter + every: ApplicationInternalDescriptionFilter """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationRfiDataFilter + some: ApplicationInternalDescriptionFilter """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationRfiDataFilter + none: ApplicationInternalDescriptionFilter } """ -A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationRfiDataFilter { - """Filter by the object’s `rfiDataId` field.""" - rfiDataId: IntFilter +input CcbcUserToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter - """Filter by the object’s `rfiDataByRfiDataId` relation.""" - rfiDataByRfiDataId: RfiDataFilter + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter +""" +A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyEmailRecordFilter { + """ + Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: EmailRecordFilter - """Checks for all expressions in this list.""" - and: [ApplicationRfiDataFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationRfiDataFilter!] - - """Negates the expression.""" - not: ApplicationRfiDataFilter -} - -""" -A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter - - """Filter by the object’s `description` field.""" - description: StringFilter - - """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" - rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter - - """Some related `rfiDataByRfiDataStatusTypeId` exist.""" - rfiDataByRfiDataStatusTypeIdExist: Boolean - - """Checks for all expressions in this list.""" - and: [RfiDataStatusTypeFilter!] - - """Checks for any expressions in this list.""" - or: [RfiDataStatusTypeFilter!] + """ + Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: EmailRecordFilter - """Negates the expression.""" - not: RfiDataStatusTypeFilter + """ + No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: EmailRecordFilter } """ -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ """ -input RfiDataStatusTypeToManyRfiDataFilter { +input CcbcUserToManyNotificationFilter { """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RfiDataFilter + every: NotificationFilter """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RfiDataFilter + some: NotificationFilter """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RfiDataFilter + none: NotificationFilter } """ -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyIntakeFilter { +input CcbcUserToManyApplicationPendingChangeRequestFilter { """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: IntakeFilter + every: ApplicationPendingChangeRequestFilter """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: IntakeFilter + some: ApplicationPendingChangeRequestFilter """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: IntakeFilter + none: ApplicationPendingChangeRequestFilter } """ -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationAnnouncedFilter { +input CcbcUserToManyCbcFilter { """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationAnnouncedFilter + every: CbcFilter """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationAnnouncedFilter + some: CbcFilter """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationAnnouncedFilter + none: CbcFilter } """ -A filter to be used against `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationAnnouncedFilter { +input CbcFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """Filter by the object’s `announced` field.""" - announced: BooleanFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28353,11 +27362,31 @@ input ApplicationAnnouncedFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """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 `cbcApplicationPendingChangeRequestsByCbcId` relation. + """ + cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter + + """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" + cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean + + """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" + cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter + + """Some related `cbcProjectCommunitiesByCbcId` exist.""" + cbcProjectCommunitiesByCbcIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28378,50 +27407,53 @@ input ApplicationAnnouncedFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationAnnouncedFilter!] + and: [CbcFilter!] """Checks for any expressions in this list.""" - or: [ApplicationAnnouncedFilter!] + or: [CbcFilter!] """Negates the expression.""" - not: ApplicationAnnouncedFilter + not: CbcFilter } """ -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationClaimsDataFilter { +input CbcToManyCbcDataFilter { """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationClaimsDataFilter + every: CbcDataFilter """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationClaimsDataFilter + some: CbcDataFilter """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationClaimsDataFilter + none: CbcDataFilter } """ -A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationClaimsDataFilter { +input CbcDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: 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 `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28441,14 +27473,23 @@ input ApplicationClaimsDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" + cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" + cbcDataChangeReasonsByCbcDataIdExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """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 @@ -28469,47 +27510,47 @@ input ApplicationClaimsDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationClaimsDataFilter!] + and: [CbcDataFilter!] """Checks for any expressions in this list.""" - or: [ApplicationClaimsDataFilter!] + or: [CbcDataFilter!] """Negates the expression.""" - not: ApplicationClaimsDataFilter + not: CbcDataFilter } """ -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationClaimsExcelDataFilter { +input CbcDataToManyCbcDataChangeReasonFilter { """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationClaimsExcelDataFilter + every: CbcDataChangeReasonFilter """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationClaimsExcelDataFilter + some: CbcDataChangeReasonFilter """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationClaimsExcelDataFilter + none: CbcDataChangeReasonFilter } """ -A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationClaimsExcelDataFilter { +input CbcDataChangeReasonFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `cbcDataId` field.""" + cbcDataId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `description` field.""" + description: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28529,11 +27570,8 @@ input ApplicationClaimsExcelDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `cbcDataByCbcDataId` relation.""" + cbcDataByCbcDataId: CbcDataFilter """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28554,47 +27592,50 @@ input ApplicationClaimsExcelDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationClaimsExcelDataFilter!] + and: [CbcDataChangeReasonFilter!] """Checks for any expressions in this list.""" - or: [ApplicationClaimsExcelDataFilter!] + or: [CbcDataChangeReasonFilter!] """Negates the expression.""" - not: ApplicationClaimsExcelDataFilter + not: CbcDataChangeReasonFilter } """ -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationCommunityProgressReportDataFilter { +input CbcToManyCbcApplicationPendingChangeRequestFilter { """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationCommunityProgressReportDataFilter + every: CbcApplicationPendingChangeRequestFilter """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationCommunityProgressReportDataFilter + some: CbcApplicationPendingChangeRequestFilter """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationCommunityProgressReportDataFilter + none: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataFilter { +input CbcApplicationPendingChangeRequestFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter + + """Filter by the object’s `comment` field.""" + comment: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28614,17 +27655,11 @@ input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter - - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28645,47 +27680,47 @@ input ApplicationCommunityProgressReportDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationCommunityProgressReportDataFilter!] + and: [CbcApplicationPendingChangeRequestFilter!] """Checks for any expressions in this list.""" - or: [ApplicationCommunityProgressReportDataFilter!] + or: [CbcApplicationPendingChangeRequestFilter!] """Negates the expression.""" - not: ApplicationCommunityProgressReportDataFilter + not: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationCommunityReportExcelDataFilter { +input CbcToManyCbcProjectCommunityFilter { """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationCommunityReportExcelDataFilter + every: CbcProjectCommunityFilter """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationCommunityReportExcelDataFilter + some: CbcProjectCommunityFilter """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationCommunityReportExcelDataFilter + none: CbcProjectCommunityFilter } """ -A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationCommunityReportExcelDataFilter { +input CbcProjectCommunityFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `communitiesSourceDataId` field.""" + communitiesSourceDataId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28705,11 +27740,19 @@ input ApplicationCommunityReportExcelDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean + + """ + Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. + """ + communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter + + """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" + communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28730,47 +27773,45 @@ input ApplicationCommunityReportExcelDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationCommunityReportExcelDataFilter!] + and: [CbcProjectCommunityFilter!] """Checks for any expressions in this list.""" - or: [ApplicationCommunityReportExcelDataFilter!] + or: [CbcProjectCommunityFilter!] """Negates the expression.""" - not: ApplicationCommunityReportExcelDataFilter + not: CbcProjectCommunityFilter } """ -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationInternalDescriptionFilter { - """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationInternalDescriptionFilter +input CommunitiesSourceDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationInternalDescriptionFilter + """Filter by the object’s `geographicNameId` field.""" + geographicNameId: IntFilter - """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationInternalDescriptionFilter -} + """Filter by the object’s `bcGeographicName` field.""" + bcGeographicName: StringFilter -""" -A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationInternalDescriptionFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `geographicType` field.""" + geographicType: StringFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `regionalDistrict` field.""" + regionalDistrict: StringFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """Filter by the object’s `economicRegion` field.""" + economicRegion: StringFilter + + """Filter by the object’s `latitude` field.""" + latitude: FloatFilter + + """Filter by the object’s `longitude` field.""" + longitude: FloatFilter + + """Filter by the object’s `mapLink` field.""" + mapLink: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -28790,11 +27831,13 @@ input ApplicationInternalDescriptionFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. + """ + cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" + cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -28815,223 +27858,164 @@ input ApplicationInternalDescriptionFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationInternalDescriptionFilter!] + and: [CommunitiesSourceDataFilter!] """Checks for any expressions in this list.""" - or: [ApplicationInternalDescriptionFilter!] + or: [CommunitiesSourceDataFilter!] """Negates the expression.""" - not: ApplicationInternalDescriptionFilter + not: CommunitiesSourceDataFilter } """ -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneDataFilter { +input CommunitiesSourceDataToManyCbcProjectCommunityFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneDataFilter + every: CbcProjectCommunityFilter """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneDataFilter + some: CbcProjectCommunityFilter """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneDataFilter + none: CbcProjectCommunityFilter } """ -A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationMilestoneDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """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 `historyOperation` field.""" - historyOperation: StringFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneDataFilter!] +input CcbcUserToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneDataFilter!] + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """Negates the expression.""" - not: ApplicationMilestoneDataFilter + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter } """ -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneExcelDataFilter { +input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneExcelDataFilter + every: CbcApplicationPendingChangeRequestFilter """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneExcelDataFilter + some: CbcApplicationPendingChangeRequestFilter """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneExcelDataFilter + none: CbcApplicationPendingChangeRequestFilter } """ -A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +input CcbcUserToManyCbcDataChangeReasonFilter { + """ + Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataChangeReasonFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataChangeReasonFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataChangeReasonFilter +} - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean +""" +A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCommunitiesSourceDataFilter { + """ + Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CommunitiesSourceDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CommunitiesSourceDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CommunitiesSourceDataFilter +} - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneExcelDataFilter!] +""" +A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectCommunityFilter { + """ + Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectCommunityFilter - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneExcelDataFilter!] + """ + Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectCommunityFilter - """Negates the expression.""" - not: ApplicationMilestoneExcelDataFilter + """ + No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectCommunityFilter } """ -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationSowDataFilter { +input CcbcUserToManyReportingGcpeFilter { """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationSowDataFilter + every: ReportingGcpeFilter """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationSowDataFilter + some: ReportingGcpeFilter """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationSowDataFilter + none: ReportingGcpeFilter } """ -A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataFilter { +input ReportingGcpeFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `reportData` field.""" + reportData: JSONFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -29051,42 +28035,6 @@ input ApplicationSowDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter - - """Filter by the object’s `isAmendment` field.""" - isAmendment: BooleanFilter - - """Filter by the object’s `sowTab1SBySowId` relation.""" - sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter - - """Some related `sowTab1SBySowId` exist.""" - sowTab1SBySowIdExist: Boolean - - """Filter by the object’s `sowTab2SBySowId` relation.""" - sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter - - """Some related `sowTab2SBySowId` exist.""" - sowTab2SBySowIdExist: Boolean - - """Filter by the object’s `sowTab7SBySowId` relation.""" - sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter - - """Some related `sowTab7SBySowId` exist.""" - sowTab7SBySowIdExist: Boolean - - """Filter by the object’s `sowTab8SBySowId` relation.""" - sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter - - """Some related `sowTab8SBySowId` exist.""" - sowTab8SBySowIdExist: Boolean - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -29106,3314 +28054,3930 @@ input ApplicationSowDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationSowDataFilter!] + and: [ReportingGcpeFilter!] """Checks for any expressions in this list.""" - or: [ApplicationSowDataFilter!] + or: [ReportingGcpeFilter!] """Negates the expression.""" - not: ApplicationSowDataFilter + not: ReportingGcpeFilter } """ -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab1Filter { +input CcbcUserToManyApplicationAnnouncedFilter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab1Filter + every: ApplicationAnnouncedFilter """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab1Filter + some: ApplicationAnnouncedFilter """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab1Filter + none: ApplicationAnnouncedFilter } """ -A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ """ -input SowTab1Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManyKeycloakJwtFilter { + """ + Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: KeycloakJwtFilter - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """ + Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: KeycloakJwtFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: KeycloakJwtFilter +} - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter +""" +A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input KeycloakJwtFilter { + """Filter by the object’s `jti` field.""" + jti: UUIDFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `exp` field.""" + exp: IntFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `nbf` field.""" + nbf: IntFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `iat` field.""" + iat: IntFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `iss` field.""" + iss: StringFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `aud` field.""" + aud: StringFilter - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Filter by the object’s `sub` field.""" + sub: StringFilter - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Filter by the object’s `typ` field.""" + typ: StringFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `azp` field.""" + azp: StringFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `authTime` field.""" + authTime: IntFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `sessionState` field.""" + sessionState: UUIDFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `acr` field.""" + acr: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `emailVerified` field.""" + emailVerified: BooleanFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `name` field.""" + name: StringFilter + + """Filter by the object’s `preferredUsername` field.""" + preferredUsername: StringFilter + + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `email` field.""" + email: StringFilter + + """Filter by the object’s `brokerSessionId` field.""" + brokerSessionId: StringFilter + + """Filter by the object’s `priorityGroup` field.""" + priorityGroup: StringFilter + + """Filter by the object’s `identityProvider` field.""" + identityProvider: StringFilter + + """Filter by the object’s `userGroups` field.""" + userGroups: StringListFilter + + """Filter by the object’s `authRole` field.""" + authRole: StringFilter + + """Filter by the object’s `ccbcUserBySub` relation.""" + ccbcUserBySub: CcbcUserFilter + + """A related `ccbcUserBySub` exists.""" + ccbcUserBySubExists: Boolean """Checks for all expressions in this list.""" - and: [SowTab1Filter!] + and: [KeycloakJwtFilter!] """Checks for any expressions in this list.""" - or: [SowTab1Filter!] + or: [KeycloakJwtFilter!] """Negates the expression.""" - not: SowTab1Filter + not: KeycloakJwtFilter } """ -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +A filter to be used against String List fields. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab2Filter { +input StringListFilter { """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: SowTab2Filter + isNull: Boolean - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Equal to the specified value.""" + equalTo: [String] + + """Not equal to the specified value.""" + notEqualTo: [String] """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: SowTab2Filter -} - -""" -A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab2Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + distinctFrom: [String] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [String] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Less than the specified value.""" + lessThan: [String] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [String] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Greater than the specified value.""" + greaterThan: [String] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [String] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Contains the specified list of values.""" + contains: [String] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Contained by the specified list of values.""" + containedBy: [String] - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Overlaps the specified list of values.""" + overlaps: [String] - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Any array item is equal to the specified value.""" + anyEqualTo: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Any array item is not equal to the specified value.""" + anyNotEqualTo: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Any array item is less than the specified value.""" + anyLessThan: String - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Any array item is greater than the specified value.""" + anyGreaterThan: String - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: String +} - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean +"""A connection to a list of `Intake` values.""" +type IntakesConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! - """Checks for all expressions in this list.""" - and: [SowTab2Filter!] + """ + A list of edges which contains the `Intake` and cursor to aid in pagination. + """ + edges: [IntakesEdge!]! - """Checks for any expressions in this list.""" - or: [SowTab2Filter!] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Negates the expression.""" - not: SowTab2Filter + """The count of *all* `Intake` you could get from the connection.""" + totalCount: Int! } """ -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +Table containing intake numbers and their respective open and closing dates """ -input ApplicationSowDataToManySowTab7Filter { +type Intake implements Node { """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - every: SowTab7Filter + id: ID! - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """Unique ID for each intake number""" + rowId: Int! + + """Open date and time for an intake number""" + openTimestamp: Datetime! + + """Close date and time for an intake number""" + closeTimestamp: Datetime! + + """Unique intake number for a set of CCBC IDs""" + ccbcIntakeNumber: Int! """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + The name of the sequence used to generate CCBC ids. It is added via a trigger """ - none: SowTab7Filter -} + applicationNumberSeqName: String -""" -A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab7Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """created by user id""" + createdBy: Int - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """created at timestamp""" + createdAt: Datetime! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """updated by user id""" + updatedBy: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """updated at timestamp""" + updatedAt: Datetime! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """archived by user id""" + archivedBy: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """archived at timestamp""" + archivedAt: Datetime - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + The counter_id used by the gapless_counter to generate a gapless intake id + """ + counterId: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """A description of the intake""" + description: String - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """A column to denote whether the intake is visible to the public""" + hidden: Boolean - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """ + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden + """ + hiddenCode: UUID - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """A column to denote whether the intake is a rolling intake""" + rollingIntake: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [SowTab7Filter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [SowTab7Filter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: SowTab7Filter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! -""" -A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab8Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [SowTab8Filter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [SowTab8Filter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: SowTab8Filter + """Read all values in the set 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! } -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcApplicationPendingChangeRequestFilter { +"""Table to hold counter for creating gapless sequences""" +type GaplessCounter implements Node { """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - every: CbcApplicationPendingChangeRequestFilter + id: ID! - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter + """Primary key for the gapless counter""" + rowId: Int! - """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcApplicationPendingChangeRequestFilter -} + """Primary key for the gapless counter""" + counter: Int! -""" -A filter to be used against `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `comment` field.""" - comment: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [CbcApplicationPendingChangeRequestFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [CbcApplicationPendingChangeRequestFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: CbcApplicationPendingChangeRequestFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -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 + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `cbcApplicationPendingChangeRequestsByCbcId` relation. - """ - cbcApplicationPendingChangeRequestsByCbcId: CbcToManyCbcApplicationPendingChangeRequestFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `cbcApplicationPendingChangeRequestsByCbcId` exist.""" - cbcApplicationPendingChangeRequestsByCbcIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! +} - """Filter by the object’s `cbcDataByCbcId` relation.""" - cbcDataByCbcId: CbcToManyCbcDataFilter +"""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 + ROLLING_INTAKE_ASC + ROLLING_INTAKE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Some related `cbcDataByCbcId` exist.""" - cbcDataByCbcIdExist: Boolean +""" +A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input IntakeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Filter by the object’s `cbcDataByProjectNumber` relation.""" - cbcDataByProjectNumber: CbcToManyCbcDataFilter + """Checks for equality with the object’s `openTimestamp` field.""" + openTimestamp: Datetime - """Some related `cbcDataByProjectNumber` exist.""" - cbcDataByProjectNumberExist: Boolean + """Checks for equality with the object’s `closeTimestamp` field.""" + closeTimestamp: Datetime - """Filter by the object’s `cbcProjectCommunitiesByCbcId` relation.""" - cbcProjectCommunitiesByCbcId: CbcToManyCbcProjectCommunityFilter + """Checks for equality with the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: Int - """Some related `cbcProjectCommunitiesByCbcId` exist.""" - cbcProjectCommunitiesByCbcIdExist: Boolean + """ + Checks for equality with the object’s `applicationNumberSeqName` field. + """ + applicationNumberSeqName: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Checks for all expressions in this list.""" - and: [CbcFilter!] + """Checks for equality with the object’s `counterId` field.""" + counterId: Int - """Checks for any expressions in this list.""" - or: [CbcFilter!] + """Checks for equality with the object’s `description` field.""" + description: String - """Negates the expression.""" - not: CbcFilter -} + """Checks for equality with the object’s `hidden` field.""" + hidden: Boolean -""" -A filter to be used against many `CbcApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CbcToManyCbcApplicationPendingChangeRequestFilter { - """ - Every related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcApplicationPendingChangeRequestFilter + """Checks for equality with the object’s `hiddenCode` field.""" + hiddenCode: UUID - """ - Some related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcApplicationPendingChangeRequestFilter + """Checks for equality with the object’s `rollingIntake` field.""" + rollingIntake: Boolean +} + +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - No related `CbcApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - none: CbcApplicationPendingChangeRequestFilter -} + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! -""" -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 + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -""" -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 +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `cbcDataChangeReasonsByCbcDataId` relation.""" - cbcDataChangeReasonsByCbcDataId: CbcDataToManyCbcDataChangeReasonFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} - """Some related `cbcDataChangeReasonsByCbcDataId` exist.""" - cbcDataChangeReasonsByCbcDataIdExist: Boolean +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Filter by the object’s `cbcByProjectNumber` relation.""" - cbcByProjectNumber: CbcFilter + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """A related `cbcByProjectNumber` exists.""" - cbcByProjectNumberExists: Boolean +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [CbcDataFilter!] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [CbcDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Negates the expression.""" - not: CbcDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! } -""" -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CbcDataToManyCbcDataChangeReasonFilter { - """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataChangeReasonFilter - - """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataChangeReasonFilter +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - none: CbcDataChangeReasonFilter -} - -""" -A filter to be used against `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CbcDataChangeReasonFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `cbcDataId` field.""" - cbcDataId: IntFilter - - """Filter by the object’s `description` field.""" - description: StringFilter + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcDataByCbcDataId` relation.""" - cbcDataByCbcDataId: CbcDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean +"""A connection to a list of `Application` values.""" +type ApplicationsConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for all expressions in this list.""" - and: [CbcDataChangeReasonFilter!] + """ + A list of edges which contains the `Application` and cursor to aid in pagination. + """ + edges: [ApplicationsEdge!]! - """Checks for any expressions in this list.""" - or: [CbcDataChangeReasonFilter!] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Negates the expression.""" - not: CbcDataChangeReasonFilter + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! } """ -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ +Table containing the data associated with the CCBC respondents application """ -input CbcToManyCbcProjectCommunityFilter { +type Application implements Node { """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - every: CbcProjectCommunityFilter + id: ID! - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Primary key ID for the application""" + rowId: Int! - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """Reference number assigned to the application""" + ccbcNumber: String -""" -A filter to be used against `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CbcProjectCommunityFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The owner of the application, identified by its JWT sub""" + owner: String! - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter + """The intake associated with the application, set when it is submitted""" + intakeId: Int - """Filter by the object’s `communitiesSourceDataId` field.""" - communitiesSourceDataId: IntFilter + """created by user id""" + createdBy: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """created at timestamp""" + createdAt: Datetime! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """updated by user id""" + updatedBy: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """updated at timestamp""" + updatedAt: Datetime! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """archived by user id""" + archivedBy: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """archived at timestamp""" + archivedAt: Datetime - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Program type of the project""" + program: String! - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Reads a single `Intake` that is related to this `Application`.""" + intakeByIntakeId: Intake - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByCreatedBy: CcbcUser - """ - Filter by the object’s `communitiesSourceDataByCommunitiesSourceDataId` relation. - """ - communitiesSourceDataByCommunitiesSourceDataId: CommunitiesSourceDataFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByUpdatedBy: CcbcUser - """A related `communitiesSourceDataByCommunitiesSourceDataId` exists.""" - communitiesSourceDataByCommunitiesSourceDataIdExists: Boolean + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByArchivedBy: CcbcUser - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [CbcProjectCommunityFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """Checks for any expressions in this list.""" - or: [CbcProjectCommunityFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Negates the expression.""" - not: CbcProjectCommunityFilter -} + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ -""" -input CommunitiesSourceDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `geographicNameId` field.""" - geographicNameId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `bcGeographicName` field.""" - bcGeographicName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `geographicType` field.""" - geographicType: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `regionalDistrict` field.""" - regionalDistrict: StringFilter + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `economicRegion` field.""" - economicRegion: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """Filter by the object’s `latitude` field.""" - latitude: FloatFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! - """Filter by the object’s `longitude` field.""" - longitude: FloatFilter + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `mapLink` field.""" - mapLink: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! """ - Filter by the object’s `cbcProjectCommunitiesByCommunitiesSourceDataId` relation. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - cbcProjectCommunitiesByCommunitiesSourceDataId: CommunitiesSourceDataToManyCbcProjectCommunityFilter - - """Some related `cbcProjectCommunitiesByCommunitiesSourceDataId` exist.""" - cbcProjectCommunitiesByCommunitiesSourceDataIdExist: Boolean + applicationAnalystLeadsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [CommunitiesSourceDataFilter!] - - """Checks for any expressions in this list.""" - or: [CommunitiesSourceDataFilter!] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: CommunitiesSourceDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition -""" -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CommunitiesSourceDataToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcProjectFilter { - """ - Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectFilter + """ + 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 `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ -""" -input CbcProjectFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [CbcProjectFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [CbcProjectFilter!] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: CbcProjectFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition -""" -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - some: ChangeRequestDataFilter + conditionalApprovalDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ChangeRequestDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ChangeRequestDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [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: ConditionalApprovalDataCondition - """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: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `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 `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [ChangeRequestDataFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [ChangeRequestDataFilter!] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: ChangeRequestDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - some: NotificationFilter + applicationGisAssessmentHhsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input NotificationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + 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 `notificationType` field.""" - notificationType: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `emailRecordId` field.""" - emailRecordId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationSowDataCondition - """Filter by the object’s `emailRecordByEmailRecordId` relation.""" - emailRecordByEmailRecordId: EmailRecordFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """A related `emailRecordByEmailRecordId` exists.""" - emailRecordByEmailRecordIdExists: Boolean + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectInformationDataCondition - """Checks for all expressions in this list.""" - and: [NotificationFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Checks for any expressions in this list.""" - or: [NotificationFilter!] + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: NotificationFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + 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 `toEmail` field.""" - toEmail: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccEmail` field.""" - ccEmail: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `subject` field.""" - subject: StringFilter + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `body` field.""" - body: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """Filter by the object’s `messageId` field.""" - messageId: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition - """Filter by the object’s `notificationsByEmailRecordId` relation.""" - notificationsByEmailRecordId: EmailRecordToManyNotificationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Some related `notificationsByEmailRecordId` exist.""" - notificationsByEmailRecordIdExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityReportExcelDataCondition - """Checks for all expressions in this list.""" - and: [EmailRecordFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Checks for any expressions in this list.""" - or: [EmailRecordFilter!] + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: EmailRecordFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """ + 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 `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - none: ApplicationPackageFilter -} + applicationClaimsExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPackageFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `package` field.""" - package: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsExcelDataCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneDataCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [ApplicationPackageFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [ApplicationPackageFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: ApplicationPackageFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter + """ + 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! """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - none: ApplicationPendingChangeRequestFilter -} + applicationInternalDescriptionsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `comment` field.""" - comment: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationInternalDescriptionCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationProjectTypeCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter -} + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - none: ApplicationProjectTypeFilter -} + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationProjectTypeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `projectType` field.""" - projectType: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncedCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [ApplicationProjectTypeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [ApplicationProjectTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: ApplicationProjectTypeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCcbcUserFilter { - """ - Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! """ - Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + computed column to return space separated list of amendment numbers for a change request """ - some: CcbcUserFilter + amendmentNumbers: String - """ - No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CcbcUserFilter -} + """Computed column to return analyst lead of an application""" + analystLead: String -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + announced: Boolean - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Computed column that returns list of announcements for the application""" + announcements( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input AttachmentFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `file` field.""" - file: UUIDFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `fileName` field.""" - fileName: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Filter by the object’s `fileType` field.""" - fileType: StringFilter + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData - """Filter by the object’s `fileSize` field.""" - fileSize: StringFilter + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Computed column to return external status of an application""" + externalStatus: String - """Filter by the object’s `applicationStatusId` field.""" - applicationStatusId: IntFilter + """Computed column to display form_data""" + formData: FormData - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationStatusByApplicationStatusId` relation. - """ - applicationStatusByApplicationStatusId: ApplicationStatusFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationStatusByApplicationStatusId` exists.""" - applicationStatusByApplicationStatusIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: HistoryItemFilter + ): HistoryItemsConnection! + intakeNumber: Int + internalDescription: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Computed column to display organization name from json data""" + organizationName: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Computed column to return the application announced status for an application + """ + package: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Computed column to return project information data""" + projectInformation: ProjectInformationData - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Computed column to display the project name""" + projectName: String - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Computed column to return last RFI for an application""" + rfi: RfiData - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Computed column to return status of an application""" + status: String - """Checks for all expressions in this list.""" - and: [AttachmentFilter!] + """Computed column to return the order of the status""" + statusOrder: Int - """Checks for any expressions in this list.""" - or: [AttachmentFilter!] + """ + Computed column to return the status order with the status name appended for sorting and filtering + """ + statusSortFilter: String + zone: Int - """Negates the expression.""" - not: AttachmentFilter -} + """ + Computed column to get single lowest zone from json data, used for sorting + """ + zones: [Int] -""" -A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `status` field.""" - status: 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 `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusTypeCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" - attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `attachmentsByApplicationStatusId` exist.""" - attachmentsByApplicationStatusIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationStatusTypeByStatus` relation.""" - applicationStatusTypeByStatus: ApplicationStatusTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `applicationStatusTypeByStatus` exists.""" - applicationStatusTypeByStatusExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationStatusFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [ApplicationStatusFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! - """Negates the expression.""" - not: ApplicationStatusFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `description` field.""" - description: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `visibleByApplicant` field.""" - visibleByApplicant: BooleanFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: BooleanFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationStatusesByStatus` relation.""" - applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationStatusesByStatus` exist.""" - applicationStatusesByStatusExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [ApplicationStatusTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationStatusTypeFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: ApplicationStatusTypeFilter -} + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyGisDataFilter { - """ - Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: GisDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: GisDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: GisDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAnalystFilter { - """ - Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnalystFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnalystFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnalystFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + """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 `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `active` field.""" - active: BooleanFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `email` field.""" - email: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" - applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + """ + 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 `applicationAnalystLeadsByAnalystId` exist.""" - applicationAnalystLeadsByAnalystIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [AnalystFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [AnalystFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: AnalystFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! -""" -A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `analystId` field.""" - analystId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `analystByAnalystId` relation.""" - analystByAnalystId: AnalystFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `analystByAnalystId` exists.""" - analystByAnalystIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [ApplicationAnalystLeadFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationAnalystLeadFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: ApplicationAnalystLeadFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcFilter { - """ - Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """ - Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcFilter + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataFilter { - """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `CbcDataChangeReason` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataChangeReasonFilter { - """ - Every related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataChangeReasonFilter + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataChangeReasonFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """ - No related `CbcDataChangeReason` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataChangeReasonFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! -""" -A filter to be used against many `CbcProjectCommunity` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcProjectCommunityFilter { - """ - Every related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcProjectCommunityFilter + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcProjectCommunityFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `CbcProjectCommunity` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcProjectCommunityFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `CommunitiesSourceData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCommunitiesSourceDataFilter { - """ - Every related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CommunitiesSourceDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CommunitiesSourceDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `CommunitiesSourceData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CommunitiesSourceDataFilter -} + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyEmailRecordFilter { - """ - Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: EmailRecordFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition - """ - Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: EmailRecordFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! - """ - No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: EmailRecordFilter -} - -""" -A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyRecordVersionFilter { - """ - Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RecordVersionFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RecordVersionFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RecordVersionFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ -""" -input RecordVersionFilter { - """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `oldRecordId` field.""" - oldRecordId: UUIDFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `op` field.""" - op: OperationFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ts` field.""" - ts: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `tableOid` field.""" - tableOid: BigFloatFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `tableSchema` field.""" - tableSchema: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `tableName` field.""" - tableName: 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 `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `record` field.""" - record: JSONFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [RecordVersionFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [RecordVersionFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: RecordVersionFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ -""" -input BigIntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value.""" - equalTo: BigInt + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not equal to the specified value.""" - notEqualTo: BigInt + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigInt + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Included in the specified list.""" - in: [BigInt!] + """Only read the last `n` values of the set.""" + last: Int - """Not included in the specified list.""" - notIn: [BigInt!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than the specified value.""" - lessThan: BigInt + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than the specified value.""" - greaterThan: BigInt + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ -""" -input OperationFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Equal to the specified value.""" - equalTo: Operation + """Only read the last `n` values of the set.""" + last: Int - """Not equal to the specified value.""" - notEqualTo: Operation + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Operation + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Operation + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Included in the specified list.""" - in: [Operation!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not included in the specified list.""" - notIn: [Operation!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Less than the specified value.""" - lessThan: Operation + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Operation + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Greater than the specified value.""" - greaterThan: Operation + """Only read the last `n` values of the set.""" + last: Int - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Operation -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -enum Operation { - INSERT - UPDATE - DELETE - TRUNCATE -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ -""" -input BigFloatFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value.""" - equalTo: BigFloat + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not equal to the specified value.""" - notEqualTo: BigFloat + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigFloat + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigFloat + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Included in the specified list.""" - in: [BigFloat!] + """Only read the last `n` values of the set.""" + last: Int - """Not included in the specified list.""" - notIn: [BigFloat!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than the specified value.""" - lessThan: BigFloat + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigFloat + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than the specified value.""" - greaterThan: BigFloat + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigFloat -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A floating point number that requires more precision than IEEE 754 binary 64 -""" -scalar BigFloat + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against many `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyReportingGcpeFilter { - """ - Every related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ReportingGcpeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ReportingGcpeFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ReportingGcpe` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ReportingGcpeFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `ReportingGcpe` object types. All fields are combined with a logical ‘and.’ -""" -input ReportingGcpeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `reportData` field.""" - reportData: JSONFilter + """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 + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + """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 `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ReportingGcpeFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ReportingGcpeFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ReportingGcpeFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab1Filter { - """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab1Filter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab1Filter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GisDataCondition -""" -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab2Filter { - """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab2Filter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab2Filter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab7Filter { - """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab7Filter + """ + 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 `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab7Filter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyKeycloakJwtFilter { - """ - Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: KeycloakJwtFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: KeycloakJwtFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: KeycloakJwtFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ -""" -input KeycloakJwtFilter { - """Filter by the object’s `jti` field.""" - jti: UUIDFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `exp` field.""" - exp: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `nbf` field.""" - nbf: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `iat` field.""" - iat: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `iss` field.""" - iss: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `aud` field.""" - aud: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sub` field.""" - sub: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `typ` field.""" - typ: 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 `azp` field.""" - azp: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `authTime` field.""" - authTime: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sessionState` field.""" - sessionState: UUIDFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `acr` field.""" - acr: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `emailVerified` field.""" - emailVerified: BooleanFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `name` field.""" - name: StringFilter + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `preferredUsername` field.""" - preferredUsername: 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 `email` field.""" - email: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `brokerSessionId` field.""" - brokerSessionId: StringFilter + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `priorityGroup` field.""" - priorityGroup: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnnouncementCondition - """Filter by the object’s `identityProvider` field.""" - identityProvider: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - """Filter by the object’s `userGroups` field.""" - userGroups: StringListFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `authRole` field.""" - authRole: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserBySub` relation.""" - ccbcUserBySub: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserBySub` exists.""" - ccbcUserBySubExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [KeycloakJwtFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [KeycloakJwtFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: KeycloakJwtFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against String List fields. All fields are combined with a logical ‘and.’ -""" -input StringListFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! - """Equal to the specified value.""" - equalTo: [String] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Not equal to the specified value.""" - notEqualTo: [String] + """Only read the last `n` values of the set.""" + last: Int - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: [String] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [String] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than the specified value.""" - lessThan: [String] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [String] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than the specified value.""" - greaterThan: [String] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [String] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! - """Contains the specified list of values.""" - contains: [String] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contained by the specified list of values.""" - containedBy: [String] + """Only read the last `n` values of the set.""" + last: Int - """Overlaps the specified list of values.""" - overlaps: [String] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Any array item is equal to the specified value.""" - anyEqualTo: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Any array item is not equal to the specified value.""" - anyNotEqualTo: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Any array item is less than the specified value.""" - anyLessThan: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Any array item is greater than the specified value.""" - anyGreaterThan: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: String -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisAssessmentHhFilter { - """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisAssessmentHhFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisAssessmentHhFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisAssessmentHhFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyProjectInformationDataFilter { - """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ProjectInformationDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectInformationDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ProjectInformationDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationAnnounced` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncedFilter { - """ - Every related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncedFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncedFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationAnnounced` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncedFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsExcelDataFilter { - """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsExcelDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsExcelDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityProgressReportDataFilter { - """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityProgressReportDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityProgressReportDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! - """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityProgressReportDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationInternalDescriptionFilter { - """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationInternalDescriptionFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationInternalDescriptionFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationInternalDescriptionFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneDataFilter { - """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneExcelDataFilter { - """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneExcelDataFilter + """ + 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 `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneExcelDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ChangeRequestDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! - """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPackageFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPendingChangeRequestFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationProjectTypeFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """ + 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 `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `counter` field.""" - counter: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `intakesByCounterId` relation.""" - intakesByCounterId: GaplessCounterToManyIntakeFilter + """ + 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 `intakesByCounterId` exist.""" - intakesByCounterIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [GaplessCounterFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [GaplessCounterFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: GaplessCounterFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterToManyIntakeFilter { - """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: IntakeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: IntakeFilter -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32432,121 +31996,90 @@ 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! -} - -"""Methods to use when ordering `CcbcUser`.""" -enum CcbcUsersOrderBy { - NATURAL - ID_ASC - ID_DESC - SESSION_SUB_ASC - SESSION_SUB_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - EMAIL_ADDRESS_ASC - EMAIL_ADDRESS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXTERNAL_ANALYST_ASC - EXTERNAL_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CcbcUser` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CcbcUserCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `sessionSub` field.""" - sessionSub: String + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! - """Checks for equality with the object’s `givenName` field.""" - givenName: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `familyName` field.""" - familyName: String + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `emailAddress` field.""" - emailAddress: 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 + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `externalAnalyst` field.""" - externalAnalyst: Boolean -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32565,48 +32098,56 @@ 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! -} + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + """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 `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { - """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 `Intake`.""" - intakesByArchivedBy( + """ + 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 + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32625,136 +32166,90 @@ 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! -} - -"""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 - PROGRAM_ASC - PROGRAM_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 + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `ccbcNumber` field.""" - ccbcNumber: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `owner` field.""" - owner: String + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `intakeId` field.""" - intakeId: 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 + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `program` field.""" - program: String -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. - """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32773,50 +32268,56 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationsConnection! -} + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. - """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + """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 `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { - """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 `Application`.""" - applicationsByUpdatedBy( + """ + 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 + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -32835,50 +32336,56 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! -} + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. - """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + """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 `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { - """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 `Application`.""" - applicationsByArchivedBy( + """ + 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 + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32897,105 +32404,90 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationsConnection! -} - -"""A connection to a list of `AssessmentData` values.""" -type AssessmentDataConnection { - """A list of `AssessmentData` objects.""" - nodes: [AssessmentData]! - - """ - A list of edges which contains the `AssessmentData` and cursor to aid in pagination. - """ - edges: [AssessmentDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `AssessmentData` you could get from the connection.""" - totalCount: Int! -} + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! -type AssessmentData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - applicationId: Int! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) - """ - jsonData: JSON! - assessmentDataType: String + """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 + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - """Reads a single `Application` that is related to this `AssessmentData`.""" - applicationByApplicationId: Application + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `AssessmentType` that is related to this `AssessmentData`. - """ - assessmentTypeByAssessmentDataType: AssessmentType + """Only read the last `n` values of the set.""" + last: Int - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByCreatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set after (below) this cursor.""" + after: 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 method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Name of and primary key of the type of an assessment""" - name: String! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Description of the assessment type""" - description: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33014,22 +32506,22 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33048,22 +32540,22 @@ type AssessmentType 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 - ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( + ccbcUsersByApplicationAnnouncedApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33094,10 +32586,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( + ccbcUsersByApplicationAnnouncedApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33128,10 +32620,10 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( + ccbcUsersByApplicationAnnouncedApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33162,103 +32654,154 @@ type AssessmentType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `AssessmentData`.""" -enum AssessmentDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - ASSESSMENT_DATA_TYPE_ASC - ASSESSMENT_DATA_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC +"""A connection to a list of `ApplicationStatus` values.""" +type ApplicationStatusesConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! + + """ + A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + """ + edges: [ApplicationStatusesEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ + totalCount: Int! } -""" -A condition to be used against `AssessmentData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AssessmentDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +"""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! - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Unique ID for the application_status""" + rowId: Int! - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ID of the application this status belongs to""" + applicationId: Int - """Checks for equality with the object’s `assessmentDataType` field.""" - assessmentDataType: String + """The status of the application""" + status: String - """Checks for equality with the object’s `createdBy` field.""" + """created by user id""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """created at timestamp""" + createdAt: Datetime! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Change reason for analyst status change""" + changeReason: String - """Checks for equality with the object’s `archivedBy` field.""" + """archived by user id""" archivedBy: Int - """Checks for equality with the object’s `archivedAt` field.""" + """archived at timestamp""" archivedAt: Datetime -} -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationStatus`. """ - edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + """ + applicationStatusTypeByStatus: ApplicationStatusType - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByCreatedBy: CcbcUser -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByArchivedBy: CcbcUser - """The `Application` at the end of the edge.""" - node: Application + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentApplicationStatusIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33277,50 +32820,56 @@ 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 `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 + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! + """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 `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { - """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 `AssessmentData`.""" - assessmentDataByCreatedBy( + """ + 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! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33339,50 +32888,51 @@ 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 `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 + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +Table containing the different statuses that can be assigned to an application """ -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +type ApplicationStatusType implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + id: ID! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Name of and primary key of the status of an application""" + name: String! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Description of the status type""" + description: String -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. + """ + visibleByApplicant: Boolean - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The logical order in which the status should be displayed.""" + statusOrder: Int! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """ + 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 @@ -33401,50 +32951,22 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationStatusCondition """ 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 AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusStatusAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33463,153 +32985,163 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} + filter: ApplicationFilter + ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! -"""A `AssessmentData` edge in the connection.""" -type AssessmentDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The `AssessmentData` at the end of the edge.""" - node: AssessmentData -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `ConditionalApprovalData` values.""" -type ConditionalApprovalDataConnection { - """A list of `ConditionalApprovalData` objects.""" - nodes: [ConditionalApprovalData]! + """ + 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 `ConditionalApprovalData` and cursor to aid in pagination. - """ - edges: [ConditionalApprovalDataEdge!]! + """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* `ConditionalApprovalData` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""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! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Unique id for the row""" - rowId: Int! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! - """The foreign key of an application""" - applicationId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndArchivedBy( + """Only read the first `n` values of the set.""" + first: 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! + """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 + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! - """ - Reads a single `Application` that is related to this `ConditionalApprovalData`. - """ - applicationByApplicationId: Application + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `ConditionalApprovalData` edge in the connection.""" -type ConditionalApprovalDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `ConditionalApprovalData` at the end of the edge.""" - node: ConditionalApprovalData + """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 + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! } -"""Methods to use when ordering `ConditionalApprovalData`.""" -enum ConditionalApprovalDataOrderBy { +"""Methods to use when ordering `ApplicationStatus`.""" +enum ApplicationStatusesOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + STATUS_ASC + STATUS_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 + 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 `ConditionalApprovalData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationStatus` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ConditionalApprovalDataCondition { +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 `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `status` field.""" + status: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33617,116 +33149,97 @@ input ConditionalApprovalDataCondition { """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 `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 `ApplicationGisAssessmentHh` values.""" -type ApplicationGisAssessmentHhsConnection { - """A list of `ApplicationGisAssessmentHh` objects.""" - nodes: [ApplicationGisAssessmentHh]! +""" +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 `ApplicationGisAssessmentHh` and 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: [ApplicationGisAssessmentHhsEdge!]! + edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""Table containing data for the gis assessment hh numbers""" -type ApplicationGisAssessmentHh implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: Int! - - """The application_id of the application this record is associated with""" - applicationId: Int! - - """The number of eligible households""" - eligible: Float - - """The number of eligible indigenous households""" - eligibleIndigenous: Float - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `Application` at the end of the edge.""" + node: Application - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationGisAssessmentHh` edge in the connection.""" -type ApplicationGisAssessmentHhsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """The `ApplicationGisAssessmentHh` at the end of the edge.""" - node: ApplicationGisAssessmentHh + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" -enum ApplicationGisAssessmentHhsOrderBy { +"""Methods to use when ordering `Application`.""" +enum ApplicationsOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ELIGIBLE_ASC - ELIGIBLE_DESC - ELIGIBLE_INDIGENOUS_ASC - ELIGIBLE_INDIGENOUS_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 @@ -33739,26 +33252,46 @@ enum ApplicationGisAssessmentHhsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + PROGRAM_ASC + PROGRAM_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 `ApplicationGisAssessmentHh` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Application` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationGisAssessmentHhCondition { +input ApplicationCondition { """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 `ccbcNumber` field.""" + ccbcNumber: String - """Checks for equality with the object’s `eligible` field.""" - eligible: Float + """Checks for equality with the object’s `owner` field.""" + owner: String - """Checks for equality with the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: Float + """Checks for equality with the object’s `intakeId` field.""" + intakeId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33777,127 +33310,42 @@ input ApplicationGisAssessmentHhCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `program` field.""" + program: String } -"""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 `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { + """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationGisDataEdge!]! + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! """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 - - """ - 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 -} - -"""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! - - """Primary key and unique identifier""" - rowId: Int! - - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByUpdatedBy: CcbcUser +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByArchivedBy: CcbcUser + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33916,22 +33364,52 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataBatchIdAndApplicationId( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33950,22 +33428,52 @@ 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 `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 - ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( +""" +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 @@ -33984,100 +33492,139 @@ 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 `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 - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( - """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 - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! + """Description of the attachment""" + description: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Original uploaded file name""" + fileName: String - """Only read the last `n` values of the set.""" - last: Int + """Original uploaded file type""" + fileType: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Original uploaded file size""" + fileSize: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + The id of the project (ccbc_public.application.id) that the attachment was uploaded to + """ + applicationId: Int! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + The id of the application_status (ccbc_public.application_status.id) that the attachment references + """ + applicationStatusId: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! + """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 } -"""Methods to use when ordering `ApplicationGisData`.""" -enum ApplicationGisDataOrderBy { +"""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 - BATCH_ID_ASC - BATCH_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 - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_STATUS_ID_ASC + APPLICATION_STATUS_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -34095,21 +33642,33 @@ 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 `Attachment` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationGisDataCondition { +input AttachmentCondition { """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 `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 `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `applicationStatusId` field.""" + applicationStatusId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -34131,16 +33690,16 @@ input ApplicationGisDataCondition { } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34149,18 +33708,16 @@ type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyCon totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34179,32 +33736,32 @@ type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34213,18 +33770,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34243,32 +33798,32 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34277,18 +33832,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34307,32 +33860,32 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34341,18 +33894,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34371,67 +33922,94 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A `ApplicationGisData` edge in the connection.""" -type ApplicationGisDataEdge { +"""A `ApplicationStatus` edge in the connection.""" +type ApplicationStatusesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationGisData` at the end of the edge.""" - node: ApplicationGisData + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus } -"""A connection to a list of `ProjectInformationData` values.""" -type ProjectInformationDataConnection { - """A list of `ProjectInformationData` objects.""" - nodes: [ProjectInformationData]! +"""A connection to a list of `ApplicationFormData` values.""" +type ApplicationFormDataConnection { + """A list of `ApplicationFormData` objects.""" + nodes: [ApplicationFormData]! """ - A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. """ - edges: [ProjectInformationDataEdge!]! + edges: [ApplicationFormDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ProjectInformationData` you could get from the connection. + The count of *all* `ApplicationFormData` you could get from the connection. """ totalCount: Int! } -"""Table to store project information data""" -type ProjectInformationData implements Node { +"""Table to pair an application to form data""" +type ApplicationFormData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique id for the row""" - rowId: Int! + """The foreign key of a form""" + formDataId: Int! """The foreign key of an application""" - applicationId: Int + 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) + 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 @@ -34450,335 +34028,322 @@ type ProjectInformationData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ProjectInformationData`. - """ - applicationByApplicationId: Application + """Schema for the respective form_data""" + formSchemaId: Int + + """Column to track analysts reason for changing form data""" + reasonForChange: String """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + Reads a single `FormDataStatusType` that is related to this `FormData`. """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ + """Reads a single `CcbcUser` that is related to this `FormData`.""" ccbcUserByArchivedBy: CcbcUser -} -"""A `ProjectInformationData` edge in the connection.""" -type ProjectInformationDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `Form` that is related to this `FormData`.""" + formByFormSchemaId: Form - """The `ProjectInformationData` at the end of the edge.""" - node: ProjectInformationData -} + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByFormDataId( + """Only read the first `n` values of the set.""" + first: Int -"""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 -} + """Only read the last `n` values of the set.""" + last: Int -""" -A condition to be used against `ProjectInformationData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ProjectInformationDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """ + 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 `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [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: ApplicationFormDataCondition - """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: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """computed column to display whether form_data is editable or not""" + isEditable: Boolean - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """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 `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `ApplicationAnnounced` values.""" -type ApplicationAnnouncedsConnection { - """A list of `ApplicationAnnounced` objects.""" - nodes: [ApplicationAnnounced]! + """ + 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 `ApplicationAnnounced` and cursor to aid in pagination. - """ - edges: [ApplicationAnnouncedsEdge!]! + """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* `ApplicationAnnounced` you could get from the connection. - """ - totalCount: Int! + """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 + ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! } -"""Table containing if the application has been announced by BC or ISED""" -type ApplicationAnnounced implements Node { +"""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! - """Unique ID for the application_announced""" - rowId: Int! + """The name of the status type""" + name: String! - """ID of the application this record belongs to""" - applicationId: Int + """The description of the status type""" + description: String - """Whether the application has been announced by BC or ISED""" - announced: Boolean + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """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 - """ - Reads a single `Application` that is related to this `ApplicationAnnounced`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. - """ - ccbcUserByCreatedBy: CcbcUser + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -"""A `ApplicationAnnounced` edge in the connection.""" -type ApplicationAnnouncedsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The `ApplicationAnnounced` at the end of the edge.""" - node: ApplicationAnnounced -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -"""Methods to use when ordering `ApplicationAnnounced`.""" -enum ApplicationAnnouncedsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ANNOUNCED_ASC - ANNOUNCED_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 method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A condition to be used against `ApplicationAnnounced` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationAnnouncedCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: 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 `applicationId` field.""" - applicationId: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `announced` field.""" - announced: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( + """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 -"""A connection to a list of `ApplicationClaimsData` values.""" -type ApplicationClaimsDataConnection { - """A list of `ApplicationClaimsData` objects.""" - nodes: [ApplicationClaimsData]! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! - """ - A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. - """ - edges: [ApplicationClaimsDataEdge!]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Only read the last `n` values of the set.""" + last: Int - """ - The count of *all* `ApplicationClaimsData` you could get from the connection. - """ - totalCount: Int! -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: 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! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Unique id for the claims""" - rowId: Int! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Id of the application the claims belongs to""" - applicationId: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """The claims form json data""" - jsonData: JSON! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataFormDataStatusTypeIdAndFormSchemaId( + """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 `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """Column to track if record was created, updated or deleted for history""" - historyOperation: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """ - Reads a single `Application` that is related to this `ApplicationClaimsData`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByCreatedBy: CcbcUser +"""A connection to a list of `FormData` values.""" +type FormDataConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + A list of edges which contains the `FormData` and cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [FormDataEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByArchivedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationClaimsData` edge in the connection.""" -type ApplicationClaimsDataEdge { +"""A `FormData` edge in the connection.""" +type FormDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationClaimsData` at the end of the edge.""" - node: ApplicationClaimsData + """The `FormData` at the end of the edge.""" + node: FormData } -"""Methods to use when ordering `ApplicationClaimsData`.""" -enum ApplicationClaimsDataOrderBy { +"""Methods to use when ordering `FormData`.""" +enum FormDataOrderBy { 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 + 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 @@ -34791,28 +34356,30 @@ enum ApplicationClaimsDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_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 `ApplicationClaimsData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `FormData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationClaimsDataCondition { +input FormDataCondition { """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 `lastEditedPage` field.""" + lastEditedPage: String + + """Checks for equality with the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -34832,791 +34399,937 @@ input ApplicationClaimsDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """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 `ApplicationClaimsExcelData` values.""" -type ApplicationClaimsExcelDataConnection { - """A list of `ApplicationClaimsExcelData` objects.""" - nodes: [ApplicationClaimsExcelData]! +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationClaimsExcelDataEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! """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 `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { + """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 `FormData`.""" + formDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { + """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 `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - """ - 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 `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationClaimsExcelData` at the end of the edge.""" - node: ApplicationClaimsExcelData -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""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 + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } """ -A condition to be used against `ApplicationClaimsExcelData` 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 `FormData`. """ -input ApplicationClaimsExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - """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* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """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 + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `ApplicationCommunityProgressReportData` values. -""" -type ApplicationCommunityProgressReportDataConnection { - """A list of `ApplicationCommunityProgressReportData` objects.""" - nodes: [ApplicationCommunityProgressReportData]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ApplicationCommunityProgressReportData` and 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: [ApplicationCommunityProgressReportDataEdge!]! + edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! +} + +"""Table to hold the json_schema for forms""" +type Form implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key on form""" + rowId: Int! + + """The end url for the form data""" + slug: String + + """The JSON schema for the respective form""" + jsonSchema: JSON! + + """Description of the form""" + description: String + + """The type of form being stored""" + formType: String + + """Reads a single `FormType` that is related to this `Form`.""" + formTypeByFormType: FormType + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! + + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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] - """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* `ApplicationCommunityProgressReportData` 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 + ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! } -""" -Table containing the Community Progress Report data for the given application -""" -type ApplicationCommunityProgressReportData implements Node { +"""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! - """Unique ID for the Community Progress Report""" - rowId: Int! - - """ID of the application this Community Progress Report belongs to""" - applicationId: Int + """Primary key and unique identifier of the type of form""" + name: String! - """ - The due date, date received and the file information of the Community Progress Report Excel file - """ - jsonData: JSON! + """Description of the type of form""" + description: String - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `Form`.""" + formsByFormType( + """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 `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """History operation""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormsConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application +"""A connection to a list of `Form` values.""" +type FormsConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + A list of edges which contains the `Form` and cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormsEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationCommunityProgressReportData` edge in the connection.""" -type ApplicationCommunityProgressReportDataEdge { +"""A `Form` edge in the connection.""" +type FormsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationCommunityProgressReportData` at the end of the edge.""" - node: ApplicationCommunityProgressReportData + """The `Form` at the end of the edge.""" + node: Form } -"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" -enum ApplicationCommunityProgressReportDataOrderBy { +"""Methods to use when ordering `Form`.""" +enum FormsOrderBy { 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 + 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 `ApplicationCommunityProgressReportData` object -types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataCondition { +input FormCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Checks for equality with the object’s `slug` field.""" + slug: String - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `jsonSchema` field.""" + jsonSchema: JSON - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """Checks for equality with the object’s `description` field.""" + description: String - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Checks for equality with the object’s `formType` field.""" + formType: String } """ -A connection to a list of `ApplicationCommunityReportExcelData` values. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type ApplicationCommunityReportExcelDataConnection { - """A list of `ApplicationCommunityReportExcelData` objects.""" - nodes: [ApplicationCommunityReportExcelData]! +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityReportExcelDataEdge!]! + edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -Table containing the Community Report excel data for the given application +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type ApplicationCommunityReportExcelData 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 Report excel data""" - rowId: Int! - - """ID of the application this Community Report belongs to""" - applicationId: Int - - """The data imported from the excel filled by the respondent""" - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationCommunityReportExcelData` edge in the connection.""" -type ApplicationCommunityReportExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """The `ApplicationCommunityReportExcelData` at the end of the edge.""" - node: ApplicationCommunityReportExcelData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" -enum ApplicationCommunityReportExcelDataOrderBy { +"""Methods to use when ordering `FormDataStatusType`.""" +enum FormDataStatusTypesOrderBy { NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC + 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 `FormDataStatusType` 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 - - """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 +input FormDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `description` field.""" + description: String } -"""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 `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { + """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 `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationInternalDescriptionsEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! """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 `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { + """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 `FormData`.""" + formDataByCreatedBy( + """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationInternalDescription`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `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 `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationInternalDescription` at the end of the edge.""" - node: ApplicationInternalDescription -} - -"""Methods to use when ordering `ApplicationInternalDescription`.""" -enum ApplicationInternalDescriptionsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationInternalDescription` object types. -All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationInternalDescriptionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """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 `FormData`.""" + formDataByUpdatedBy( + """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""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 `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { + """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 `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationMilestoneDataEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! """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! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique id for the milestone""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Id of the application the milestone belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The milestone form json data""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created by user id""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated by user id""" - updatedBy: Int + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """updated at timestamp""" - updatedAt: Datetime! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived by user id""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """archived at timestamp""" - archivedAt: Datetime +"""A `Form` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """History operation""" - historyOperation: String + """The `Form` at the end of the edge.""" + node: Form - """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. - """ - applicationByApplicationId: Application + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `ApplicationMilestoneData` edge in the connection.""" -type ApplicationMilestoneDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `ApplicationMilestoneData` at the end of the edge.""" - node: ApplicationMilestoneData + """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: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationMilestoneData`.""" -enum ApplicationMilestoneDataOrderBy { +"""Methods to use when ordering `ApplicationFormData`.""" +enum ApplicationFormDataOrderBy { NATURAL - ID_ASC - ID_DESC + FORM_DATA_ID_ASC + FORM_DATA_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationMilestoneData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationFormData` 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 +input ApplicationFormDataCondition { + """Checks for equality with the object’s `formDataId` field.""" + formDataId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int +} - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int +""" +A connection to a list of `Application` values, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime +""" +A `Application` edge in the connection, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The `Application` at the end of the edge.""" + node: Application +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +"""A `ApplicationFormData` edge in the connection.""" +type ApplicationFormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """The `ApplicationFormData` at the end of the edge.""" + node: ApplicationFormData } -"""A connection to a list of `ApplicationMilestoneExcelData` values.""" -type ApplicationMilestoneExcelDataConnection { - """A list of `ApplicationMilestoneExcelData` objects.""" - nodes: [ApplicationMilestoneExcelData]! +"""A connection to a list of `ApplicationAnalystLead` values.""" +type ApplicationAnalystLeadsConnection { + """A list of `ApplicationAnalystLead` objects.""" + nodes: [ApplicationAnalystLead]! """ - A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. """ - edges: [ApplicationMilestoneExcelDataEdge!]! + edges: [ApplicationAnalystLeadsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. + The count of *all* `ApplicationAnalystLead` you could get from the connection. """ totalCount: Int! } -"""Table containing the milestone excel data for the given application""" -type ApplicationMilestoneExcelData implements Node { +"""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 milestone excel data""" + """Unique ID for the application_analyst_lead""" rowId: Int! - """ID of the application this data belongs to""" + """ID of the application this analyst lead belongs to""" applicationId: Int - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """ID of the analyst this analyst lead belongs to""" + analystId: Int """created by user id""" createdBy: Int @@ -35637,44 +35350,49 @@ type ApplicationMilestoneExcelData implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `Application` that is related to this `ApplicationAnalystLead`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + 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 `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationMilestoneExcelData` edge in the connection.""" -type ApplicationMilestoneExcelDataEdge { +"""A `ApplicationAnalystLead` edge in the connection.""" +type ApplicationAnalystLeadsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneExcelData` at the end of the edge.""" - node: ApplicationMilestoneExcelData + """The `ApplicationAnalystLead` at the end of the edge.""" + node: ApplicationAnalystLead } -"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" -enum ApplicationMilestoneExcelDataOrderBy { +"""Methods to use when ordering `ApplicationAnalystLead`.""" +enum ApplicationAnalystLeadsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + ANALYST_ID_ASC + ANALYST_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -35692,18 +35410,18 @@ 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 `ApplicationAnalystLead` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataCondition { +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 `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `analystId` field.""" + analystId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -35724,43 +35442,68 @@ input ApplicationMilestoneExcelDataCondition { 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 `ApplicationRfiData` values.""" +type ApplicationRfiDataConnection { + """A list of `ApplicationRfiData` objects.""" + nodes: [ApplicationRfiData]! """ - A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. """ - edges: [ApplicationSowDataEdge!]! + edges: [ApplicationRfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationSowData` you could get from the connection. + The count of *all* `ApplicationRfiData` you could get from the connection. """ totalCount: Int! } -"""Table containing the SoW data for the given application""" -type ApplicationSowData 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 SoW""" + """The foreign key of a form""" + rfiDataId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + rfiDataByRfiDataId: RfiData + + """ + Reads a single `Application` that is related to this `ApplicationRfiData`. + """ + applicationByApplicationId: Application +} + +"""Table to hold RFI form data""" +type RfiData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the form data""" rowId: Int! - """ID of the application this SoW belongs to""" - applicationId: Int + """Reference number assigned to the RFI""" + rfiNumber: 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%2Fapplication_sow_data.json) + The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) """ jsonData: JSON! + """Column referencing the form data status type, defaults to draft""" + rfiDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -35779,34 +35522,128 @@ 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`. - """ - applicationByApplicationId: Application + """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByUpdatedBy: CcbcUser + """Reads a single `CcbcUser` that is related to this `RfiData`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByRfiDataId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! + + """Computed column to return all attachement rows for an rfi_data row""" + attachments( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """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: AttachmentFilter + ): AttachmentsConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationRfiDataRfiDataIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! +} + +"""The statuses applicable to an RFI""" +type RfiDataStatusType implements Node { """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - ccbcUserByArchivedBy: CcbcUser + id: ID! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """The name of the status type""" + name: String! + + """The description of the status type""" + description: String + + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -35825,22 +35662,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: RfiDataFilter + ): RfiDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35859,22 +35696,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35893,22 +35730,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -35927,22 +35764,136 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndCreatedBy( +"""A connection to a list of `RfiData` values.""" +type RfiDataConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! + + """ + A list of edges which contains the `RfiData` and cursor to aid in pagination. + """ + edges: [RfiDataEdge!]! + + """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.""" +type RfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +"""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 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 + + """Checks for equality with the object’s `rfiNumber` field.""" + rfiNumber: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """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 `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { + """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. + """ + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + + """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 `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 `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35961,22 +35912,48 @@ 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 `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndUpdatedBy( +"""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 `RfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + + """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 `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 `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35995,22 +35972,48 @@ 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 `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndArchivedBy( +"""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 `RfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! + + """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 `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 `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36029,22 +36032,167 @@ 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 `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndCreatedBy( +"""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 `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! + + """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 `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application +} + +"""A `ApplicationRfiData` edge in the connection.""" +type ApplicationRfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationRfiData` at the end of the edge.""" + node: ApplicationRfiData +} + +"""A connection to a list of `AssessmentData` values.""" +type AssessmentDataConnection { + """A list of `AssessmentData` objects.""" + nodes: [AssessmentData]! + + """ + A list of edges which contains the `AssessmentData` and cursor to aid in pagination. + """ + edges: [AssessmentDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentData` you could get from the connection.""" + totalCount: Int! +} + +type AssessmentData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + applicationId: Int! + + """ + The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) + """ + jsonData: JSON! + assessmentDataType: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `Application` that is related to this `AssessmentData`.""" + applicationByApplicationId: Application + + """ + Reads a single `AssessmentType` that is related to this `AssessmentData`. + """ + assessmentTypeByAssessmentDataType: AssessmentType + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByArchivedBy: CcbcUser +} + +""" +Table containing the different assessment types that can be assigned to an assessment +""" +type AssessmentType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Name of and primary key of the type of an assessment""" + name: String! + + """Description of the assessment type""" + description: String + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -36063,22 +36211,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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -36097,22 +36245,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 - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndArchivedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36143,10 +36291,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndCreatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36177,10 +36325,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndUpdatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36211,10 +36359,103 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! +} + +"""Methods to use when ordering `AssessmentData`.""" +enum AssessmentDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + ASSESSMENT_DATA_TYPE_ASC + ASSESSMENT_DATA_TYPE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `AssessmentData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input AssessmentDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `assessmentDataType` field.""" + assessmentDataType: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type 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 `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -36233,22 +36474,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { + """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: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! + + """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 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 `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36267,22 +36536,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36301,22 +36598,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36335,50 +36660,64 @@ 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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `SowTab1` values.""" -type SowTab1SConnection { - """A list of `SowTab1` objects.""" - nodes: [SowTab1]! +"""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 `SowTab1` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. """ - edges: [SowTab1SEdge!]! + edges: [ApplicationPackagesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab1` you could get from the connection.""" + """ + The count of *all* `ApplicationPackage` you could get from the connection. + """ totalCount: Int! } -type SowTab1 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! + + """Unique ID for the application_package""" rowId: Int! - 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_1.json) - """ - jsonData: JSON! + """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 @@ -36398,37 +36737,45 @@ type SowTab1 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ApplicationPackage`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab1` edge in the connection.""" -type SowTab1SEdge { +"""A `ApplicationPackage` edge in the connection.""" +type ApplicationPackagesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab1` at the end of the edge.""" - node: SowTab1 + """The `ApplicationPackage` at the end of the edge.""" + node: ApplicationPackage } -"""Methods to use when ordering `SowTab1`.""" -enum SowTab1SOrderBy { +"""Methods to use when ordering `ApplicationPackage`.""" +enum ApplicationPackagesOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PACKAGE_ASC + PACKAGE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -36446,17 +36793,18 @@ enum SowTab1SOrderBy { } """ -A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationPackage` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input SowTab1Condition { +input ApplicationPackageCondition { """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 `package` field.""" + package: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -36477,38 +36825,40 @@ input SowTab1Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab2` values.""" -type SowTab2SConnection { - """A list of `SowTab2` objects.""" - nodes: [SowTab2]! +"""A connection to a list of `ConditionalApprovalData` values.""" +type ConditionalApprovalDataConnection { + """A list of `ConditionalApprovalData` objects.""" + nodes: [ConditionalApprovalData]! """ - A list of edges which contains the `SowTab2` and cursor to aid in pagination. + A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. """ - edges: [SowTab2SEdge!]! + edges: [ConditionalApprovalDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab2` you could get from the connection.""" + """ + The count of *all* `ConditionalApprovalData` you could get from the connection. + """ totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab2 implements Node { +"""Table to store conditional approval data""" +type ConditionalApprovalData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW detailed budget record""" + """Unique id for the row""" rowId: Int! - """ID of the SoW""" - sowId: Int + """The foreign key of an application""" + applicationId: Int """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.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! @@ -36530,35 +36880,43 @@ type SowTab2 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ConditionalApprovalData`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab2` edge in the connection.""" -type SowTab2SEdge { +"""A `ConditionalApprovalData` edge in the connection.""" +type ConditionalApprovalDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab2` at the end of the edge.""" - node: SowTab2 + """The `ConditionalApprovalData` at the end of the edge.""" + node: ConditionalApprovalData } -"""Methods to use when ordering `SowTab2`.""" -enum SowTab2SOrderBy { +"""Methods to use when ordering `ConditionalApprovalData`.""" +enum ConditionalApprovalDataOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -36578,14 +36936,15 @@ 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 `ConditionalApprovalData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input SowTab2Condition { +input ConditionalApprovalDataCondition { """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 @@ -36602,90 +36961,310 @@ input SowTab2Condition { """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 `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `ApplicationGisData` values.""" +type ApplicationGisDataConnection { + """A list of `ApplicationGisData` objects.""" + nodes: [ApplicationGisData]! + + """ + A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + """ + edges: [ApplicationGisDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationGisData` 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 + + """ + 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 +} + +"""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! + + """Primary key and unique identifier""" + rowId: Int! + + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 `Application`.""" + applicationsByApplicationGisDataBatchIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """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 `SowTab7` values.""" -type SowTab7SConnection { - """A list of `SowTab7` objects.""" - nodes: [SowTab7]! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - A list of edges which contains the `SowTab7` and cursor to aid in pagination. - """ - edges: [SowTab7SEdge!]! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The count of *all* `SowTab7` you could get from the connection.""" - totalCount: Int! -} + """Only read the last `n` values of the set.""" + last: 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 + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - The data imported from the Excel filled by the respondent. 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! + """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 + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( + """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 `SowTab7`.""" - 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 `SowTab7`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `SowTab7` edge in the connection.""" -type SowTab7SEdge { - """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 `SowTab7` at the end of the edge.""" - node: SowTab7 + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `SowTab7`.""" -enum SowTab7SOrderBy { +"""Methods to use when ordering `ApplicationGisData`.""" +enum ApplicationGisDataOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC + BATCH_ID_ASC + BATCH_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -36705,14 +37284,18 @@ enum SowTab7SOrderBy { } """ -A condition to be used against `SowTab7` 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 SowTab7Condition { +input ApplicationGisDataCondition { """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 `batchId` field.""" + batchId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -36736,147 +37319,81 @@ input SowTab7Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab8` values.""" -type SowTab8SConnection { - """A list of `SowTab8` objects.""" - nodes: [SowTab8]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `SowTab8` and 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: [SowTab8SEdge!]! + edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab8` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: 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! - - """Unique ID for the SoW Tab 8""" - 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_8.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 `ApplicationSowData` that is related to this `SowTab8`.""" - applicationSowDataBySowId: ApplicationSowData - - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `SowTab8` edge in the connection.""" -type SowTab8SEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab8` at the end of the edge.""" - node: SowTab8 -} - -"""Methods to use when ordering `SowTab8`.""" -enum SowTab8SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab8Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `Application` at the end of the edge.""" + node: Application - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """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! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -36885,16 +37402,18 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { +""" +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 `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36913,30 +37432,32 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { +""" +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 `SowTab1`, 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: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -36945,16 +37466,18 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { +""" +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 `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36973,30 +37496,32 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""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 `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37005,16 +37530,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 `ApplicationGisData`. +""" +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 `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37033,48 +37560,163 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""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]! """ - 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 `ApplicationAnnouncement` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationAnnouncementsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """ + The count of *all* `ApplicationAnnouncement` you could get from the connection. + """ + totalCount: Int! +} + +"""Table to pair an application to RFI data""" +type ApplicationAnnouncement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The foreign key of a form""" + announcementId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean + + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String + + """ + Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + """ + announcementByAnnouncementId: Announcement + + """ + Reads a single `Application` that is related to this `ApplicationAnnouncement`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""Table to hold the announcement data""" +type Announcement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the announcement data""" + rowId: Int! + + """List of CCBC number of the projects included in announcement""" + ccbcNumbers: String + + """ + The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByCreatedBy: CcbcUser -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByUpdatedBy: CcbcUser - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -37093,48 +37735,22 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -37153,48 +37769,22 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationFilter + ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37213,48 +37803,22 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37273,48 +37837,22 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! - - """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 + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37333,90 +37871,151 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""Methods to use when ordering `ApplicationAnnouncement`.""" +enum ApplicationAnnouncementsOrderBy { + NATURAL + 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 `ApplicationAnnouncement` 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 + + """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 `Application` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - 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 `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! + 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 `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { +""" +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 `SowTab7`.""" - sowTab7SByArchivedBy( - """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 + """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: SowTab7Filter - ): SowTab7SConnection! + """ + 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 `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37425,16 +38024,20 @@ 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 `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 `SowTab8`.""" - sowTab8SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37453,30 +38056,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""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 `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37485,16 +38090,20 @@ 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 `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 `SowTab8`.""" - sowTab8SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37513,30 +38122,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""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 `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37545,16 +38156,20 @@ 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 `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37573,132 +38188,67 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A `ApplicationSowData` edge in the connection.""" -type ApplicationSowDataEdge { +"""A `ApplicationAnnouncement` edge in the connection.""" +type ApplicationAnnouncementsEdge { """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 + """The `ApplicationAnnouncement` at the end of the edge.""" + node: ApplicationAnnouncement } -"""A connection to a list of `ChangeRequestData` values.""" -type ChangeRequestDataConnection { - """A list of `ChangeRequestData` objects.""" - nodes: [ChangeRequestData]! +"""A connection to a list of `ApplicationGisAssessmentHh` values.""" +type ApplicationGisAssessmentHhsConnection { + """A list of `ApplicationGisAssessmentHh` objects.""" + nodes: [ApplicationGisAssessmentHh]! """ - A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. """ - edges: [ChangeRequestDataEdge!]! + edges: [ApplicationGisAssessmentHhsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ChangeRequestData` you could get from the connection. + The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. """ totalCount: Int! } -"""Table to store change request data""" -type ChangeRequestData 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 row""" + """Primary key and unique identifier""" rowId: Int! - """The foreign key of an application""" - applicationId: Int + """The application_id of the application this record is associated with""" + applicationId: Int! - """The json form data of the change request form""" - jsonData: JSON! + """The number of eligible households""" + eligible: Float + + """The number of eligible indigenous households""" + eligibleIndigenous: Float """created by user id""" createdBy: Int @@ -37717,41 +38267,48 @@ type ChangeRequestData implements Node { """archived at timestamp""" archivedAt: Datetime - amendmentNumber: Int """ - Reads a single `Application` that is related to this `ChangeRequestData`. + Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. """ applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisAssessmentHh`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `ChangeRequestData` edge in the connection.""" -type ChangeRequestDataEdge { +"""A `ApplicationGisAssessmentHh` edge in the connection.""" +type ApplicationGisAssessmentHhsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ChangeRequestData` at the end of the edge.""" - node: ChangeRequestData + """The `ApplicationGisAssessmentHh` at the end of the edge.""" + node: ApplicationGisAssessmentHh } -"""Methods to use when ordering `ChangeRequestData`.""" -enum ChangeRequestDataOrderBy { +"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" +enum ApplicationGisAssessmentHhsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + ELIGIBLE_ASC + ELIGIBLE_DESC + ELIGIBLE_INDIGENOUS_ASC + ELIGIBLE_INDIGENOUS_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -37764,25 +38321,26 @@ enum ChangeRequestDataOrderBy { 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.’ +A condition to be used against `ApplicationGisAssessmentHh` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input ChangeRequestDataCondition { +input ApplicationGisAssessmentHhCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `eligible` field.""" + eligible: Float + + """Checks for equality with the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: Float """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -37801,50 +38359,45 @@ input ChangeRequestDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int } -"""A connection to a list of `Notification` values.""" -type NotificationsConnection { - """A list of `Notification` objects.""" - nodes: [Notification]! +"""A connection to a list of `ApplicationSowData` values.""" +type ApplicationSowDataConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Notification` and cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. """ - edges: [NotificationsEdge!]! + edges: [ApplicationSowDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Notification` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""Table containing list of application notifications""" -type Notification 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! - """Unique ID for each notification""" + """Unique ID for the SoW""" rowId: Int! - """Type of the notification""" - notificationType: String - - """ID of the application this notification belongs to""" + """ID of the application this SoW belongs to""" applicationId: Int - """Additional data for the notification""" + """ + 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 email record""" - emailRecordId: Int - """created by user id""" createdBy: Int @@ -37863,79 +38416,102 @@ type Notification implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Notification`.""" - applicationByApplicationId: Application + """The amendment number""" + amendmentNumber: Int - """Reads a single `EmailRecord` that is related to this `Notification`.""" - emailRecordByEmailRecordId: EmailRecord + """Column identifying if the record is an amendment""" + isAmendment: Boolean - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + 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 `Notification`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByArchivedBy: 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 a single `CcbcUser` that is related to this `ApplicationSowData`. """ - id: ID! + ccbcUserByArchivedBy: CcbcUser - """Unique ID for each email sent""" - rowId: Int! + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( + """Only read the first `n` values of the set.""" + first: Int - """Email Address(es) of the recipients""" - toEmail: String + """Only read the last `n` values of the set.""" + last: Int - """Email Address(es) of the CC recipients""" - ccEmail: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Subject of the email""" - subject: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Body of the email""" - body: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Message ID of the email returned by the email server""" - messageId: String + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] - """Additional data for the email""" - jsonData: JSON! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab2Condition - """created by user id""" - createdBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab2Filter + ): SowTab2SConnection! - """created at timestamp""" - createdAt: Datetime! + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( + """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 `CcbcUser` that is related to this `EmailRecord`.""" - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" - ccbcUserByArchivedBy: CcbcUser + """ + 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 `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -37954,22 +38530,22 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationEmailRecordIdAndApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -37988,22 +38564,22 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndCreatedBy( + ccbcUsersBySowTab2SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38034,10 +38610,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( + ccbcUsersBySowTab2SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38068,10 +38644,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndArchivedBy( + ccbcUsersBySowTab2SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38102,106 +38678,112 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! -} + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! -"""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 -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -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 + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `notificationType` field.""" - notificationType: 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 `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 `emailRecordId` field.""" - emailRecordId: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! -"""A `Application` edge in the connection, with data from `Notification`.""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The `Application` at the end of the edge.""" - node: Application + """Only read the last `n` values of the set.""" + last: Int - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38220,50 +38802,90 @@ type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! + """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 `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { - """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 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 + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38282,50 +38904,22 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38344,50 +38938,22 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38406,64 +38972,55 @@ 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""A `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: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `ApplicationPackage` values.""" -type ApplicationPackagesConnection { - """A list of `ApplicationPackage` objects.""" - nodes: [ApplicationPackage]! +"""A connection to a list of `SowTab2` values.""" +type SowTab2SConnection { + """A list of `SowTab2` objects.""" + nodes: [SowTab2]! """ - A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. + A list of edges which contains the `SowTab2` and cursor to aid in pagination. """ - edges: [ApplicationPackagesEdge!]! + edges: [SowTab2SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationPackage` you could get from the connection. - """ + """The count of *all* `SowTab2` you could get from the connection.""" totalCount: Int! } -"""Table containing the package the application is assigned to""" -type ApplicationPackage implements Node { +"""Table containing the detailed budget data for the given SoW""" +type SowTab2 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_package""" + """Unique ID for the SoW detailed budget record""" rowId: Int! - """The application_id of the application this record is associated with""" - applicationId: Int + """ID of the SoW""" + sowId: Int - """The package number the application is assigned to""" - package: 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 @@ -38483,45 +39040,37 @@ type ApplicationPackage implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationPackage` edge in the connection.""" -type ApplicationPackagesEdge { +"""A `SowTab2` edge in the connection.""" +type SowTab2SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPackage` at the end of the edge.""" - node: ApplicationPackage + """The `SowTab2` at the end of the edge.""" + node: SowTab2 } -"""Methods to use when ordering `ApplicationPackage`.""" -enum ApplicationPackagesOrderBy { +"""Methods to use when ordering `SowTab2`.""" +enum SowTab2SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PACKAGE_ASC - PACKAGE_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -38539,18 +39088,17 @@ enum ApplicationPackagesOrderBy { } """ -A condition to be used against `ApplicationPackage` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationPackageCondition { +input SowTab2Condition { """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 `package` field.""" - package: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -38571,47 +39119,35 @@ input ApplicationPackageCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! +"""A connection to a list of `SowTab1` values.""" +type SowTab1SConnection { + """A list of `SowTab1` objects.""" + nodes: [SowTab1]! """ - A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. + A list of edges which contains the `SowTab1` and cursor to aid in pagination. """ - edges: [ApplicationPendingChangeRequestsEdge!]! + edges: [SowTab1SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. - """ + """The count of *all* `SowTab1` you could get from the connection.""" totalCount: Int! } -"""Table containing the pending change request details of the application""" -type ApplicationPendingChangeRequest implements Node { +type SowTab1 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - - """Unique ID for the application_pending_change_request""" rowId: Int! + 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 - - """ - Column containing the comment for the change request or completion of the change request + 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) """ - comment: String + jsonData: JSON! """created by user id""" createdBy: Int @@ -38631,47 +39167,37 @@ type ApplicationPendingChangeRequest implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { +"""A `SowTab1` edge in the connection.""" +type SowTab1SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest + """The `SowTab1` at the end of the edge.""" + node: SowTab1 } -"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" -enum ApplicationPendingChangeRequestsOrderBy { +"""Methods to use when ordering `SowTab1`.""" +enum SowTab1SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -38689,21 +39215,17 @@ enum ApplicationPendingChangeRequestsOrderBy { } """ -A condition to be used against `ApplicationPendingChangeRequest` object types. -All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationPendingChangeRequestCondition { +input SowTab1Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Checks for equality with the object’s `comment` field.""" - comment: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -38724,40 +39246,35 @@ input ApplicationPendingChangeRequestCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationProjectType` values.""" -type ApplicationProjectTypesConnection { - """A list of `ApplicationProjectType` objects.""" - nodes: [ApplicationProjectType]! +"""A connection to a list of `SowTab7` values.""" +type SowTab7SConnection { + """A list of `SowTab7` objects.""" + nodes: [SowTab7]! """ - A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. + A list of edges which contains the `SowTab7` and cursor to aid in pagination. """ - edges: [ApplicationProjectTypesEdge!]! + edges: [SowTab7SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationProjectType` you could get from the connection. - """ + """The count of *all* `SowTab7` you could get from the connection.""" totalCount: Int! } -"""Table containing the project type of the application""" -type ApplicationProjectType implements Node { +type SowTab7 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - - """Unique ID for the application_project_type""" rowId: Int! + sowId: Int - """ID of the application this application_project_type belongs to""" - applicationId: Int - - """Column containing the project type of the application""" - projectType: 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! """created by user id""" createdBy: Int @@ -38777,45 +39294,37 @@ type ApplicationProjectType implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationProjectType`. - """ - applicationByApplicationId: Application + """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationProjectType` edge in the connection.""" -type ApplicationProjectTypesEdge { +"""A `SowTab7` edge in the connection.""" +type SowTab7SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationProjectType` at the end of the edge.""" - node: ApplicationProjectType + """The `SowTab7` at the end of the edge.""" + node: SowTab7 } -"""Methods to use when ordering `ApplicationProjectType`.""" -enum ApplicationProjectTypesOrderBy { +"""Methods to use when ordering `SowTab7`.""" +enum SowTab7SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PROJECT_TYPE_ASC - PROJECT_TYPE_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -38833,18 +39342,17 @@ 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 `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationProjectTypeCondition { +input SowTab7Condition { """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 `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 @@ -38865,290 +39373,165 @@ input ApplicationProjectTypeCondition { archivedAt: Datetime } -"""A connection to a list of `Attachment` values.""" -type AttachmentsConnection { - """A list of `Attachment` objects.""" - nodes: [Attachment]! +"""A connection to a list of `SowTab8` values.""" +type SowTab8SConnection { + """A list of `SowTab8` objects.""" + nodes: [SowTab8]! """ - A list of edges which contains the `Attachment` and cursor to aid in pagination. + A list of edges which contains the `SowTab8` and cursor to aid in pagination. """ - edges: [AttachmentsEdge!]! + edges: [SowTab8SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Attachment` you could get from the connection.""" + """The count of *all* `SowTab8` 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! - - """Unique ID for the attachment""" - rowId: Int! - - """ - Universally Unique ID for the attachment, created by the fastapi storage micro-service - """ - file: UUID - - """Description of the attachment""" - description: String - - """Original uploaded file name""" - fileName: String - - """Original uploaded file type""" - fileType: String - - """Original uploaded file size""" - fileSize: String - - """ - The id of the project (ccbc_public.application.id) that the attachment was uploaded to - """ - applicationId: Int! - - """ - The id of the application_status (ccbc_public.application_status.id) that the attachment references - """ - applicationStatusId: Int - - """created by user id""" - createdBy: Int - - """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 -} - -"""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 +"""Table containing the detailed budget data for the given SoW""" +type SowTab8 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for the SoW Tab 8""" + rowId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ID of the SoW""" + sowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + """ + jsonData: JSON! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created by user id""" + createdBy: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( - """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 `Application`.""" - orderBy: [ApplicationsOrderBy!] = [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: ApplicationCondition +"""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: ApplicationFilter - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + """The `SowTab8` at the end of the edge.""" + node: SowTab8 +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `SowTab8`.""" +enum SowTab8SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input SowTab8Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """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 - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( - """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 `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { + """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 `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! - """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 `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { + """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 - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39167,51 +39550,48 @@ 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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -Table containing the different statuses that can be assigned to an application -""" -type ApplicationStatusType implements Node { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { + """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 `SowTab2`, and the cursor to aid in pagination. """ - id: ID! - - """Name of and primary key of the status of an application""" - name: String! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! - """Description of the status type""" - description: String + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. - """ - visibleByApplicant: Boolean + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """The logical order in which the status should be displayed.""" - statusOrder: Int! +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. - """ - visibleByAnalyst: Boolean + """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 `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39230,56 +39610,48 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab2Condition """ 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( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: SowTab2Filter + ): SowTab2SConnection! +} - """ - 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 `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { + """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 `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! - """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* `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: ApplicationCondition +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39298,56 +39670,48 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: SowTab2Filter + ): SowTab2SConnection! +} - """ - 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 `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { + """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 `SowTab1`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! - """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 `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { + """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 - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39366,143 +39730,48 @@ type ApplicationStatusType 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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! -} - -"""A connection to a list of `ApplicationStatus` values.""" -type ApplicationStatusesConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! - - """ - A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. - """ - edges: [ApplicationStatusesEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ - totalCount: Int! -} - -"""A `ApplicationStatus` edge in the connection.""" -type ApplicationStatusesEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus -} - -"""Methods to use when ordering `ApplicationStatus`.""" -enum ApplicationStatusesOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - STATUS_ASC - STATUS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - CHANGE_REASON_ASC - CHANGE_REASON_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationStatus` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationStatusCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `status` field.""" - status: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `changeReason` field.""" - changeReason: String - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -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 `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { + """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 `SowTab1`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! """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 ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """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 `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39521,32 +39790,30 @@ type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -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 `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { """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 `SowTab1`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39555,18 +39822,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 `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39585,32 +39850,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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -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 `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39619,18 +39882,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 `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39649,32 +39910,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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -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 `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39683,18 +39942,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 `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 `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39713,133 +39970,108 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -"""Methods to use when ordering `Attachment`.""" -enum AttachmentsOrderBy { - NATURAL - ID_ASC - ID_DESC - FILE_ASC - FILE_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FILE_NAME_ASC - FILE_NAME_DESC - FILE_TYPE_ASC - FILE_TYPE_DESC - FILE_SIZE_ASC - FILE_SIZE_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - APPLICATION_STATUS_ID_ASC - APPLICATION_STATUS_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -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 +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `file` field.""" - file: UUID + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! - """Checks for equality with the object’s `description` field.""" - description: String + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `fileName` field.""" - fileName: String + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `fileType` field.""" - fileType: String +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `fileSize` field.""" - fileSize: String + """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 `SowTab7`.""" + sowTab7SByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `applicationStatusId` field.""" - applicationStatusId: Int + """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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [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: SowTab7Condition - """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: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `Attachment`, 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: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! """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 ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """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 `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39858,32 +40090,30 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { +"""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 `Attachment`, 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: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39892,16 +40122,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 `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 `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39920,32 +40150,30 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { +"""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 `Attachment`, 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: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39954,16 +40182,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 `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 `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39982,126 +40210,275 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + 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 connection to a list of `CcbcUser` values, with data from `Attachment`. +A condition to be used against `ApplicationSowData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +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 `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + edges: [ProjectInformationDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ProjectInformationData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { +"""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 `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ProjectInformationData` at the end of the edge.""" + node: ProjectInformationData +} - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""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 +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ProjectInformationData` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ProjectInformationDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! -} + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime -"""A `Attachment` edge in the connection.""" -type AttachmentsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """The `Attachment` at the end of the edge.""" - node: Attachment + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `ApplicationAnalystLead` values.""" -type ApplicationAnalystLeadsConnection { - """A list of `ApplicationAnalystLead` objects.""" - nodes: [ApplicationAnalystLead]! +"""A connection to a list of `ChangeRequestData` values.""" +type ChangeRequestDataConnection { + """A list of `ChangeRequestData` objects.""" + nodes: [ChangeRequestData]! """ - A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. """ - edges: [ApplicationAnalystLeadsEdge!]! + edges: [ChangeRequestDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnalystLead` you could get from the connection. + The count of *all* `ChangeRequestData` you could get from the connection. """ totalCount: Int! } -"""Table containing the analyst lead for the given application""" -type ApplicationAnalystLead implements Node { +"""Table to store change request data""" +type ChangeRequestData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_analyst_lead""" + """Unique id for the row""" rowId: Int! - """ID of the application this analyst lead belongs to""" + """The foreign key of an application""" applicationId: Int - """ID of the analyst this analyst lead belongs to""" - analystId: Int + """The json form data of the change request form""" + jsonData: JSON! """created by user id""" createdBy: Int @@ -40120,51 +40497,41 @@ type ApplicationAnalystLead implements Node { """archived at timestamp""" archivedAt: Datetime + amendmentNumber: Int """ - Reads a single `Application` that is related to this `ApplicationAnalystLead`. + Reads a single `Application` that is related to this `ChangeRequestData`. """ applicationByApplicationId: Application - """ - Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. - """ - analystByAnalystId: Analyst - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationAnalystLead` edge in the connection.""" -type ApplicationAnalystLeadsEdge { +"""A `ChangeRequestData` edge in the connection.""" +type ChangeRequestDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnalystLead` at the end of the edge.""" - node: ApplicationAnalystLead + """The `ChangeRequestData` at the end of the edge.""" + node: ChangeRequestData } -"""Methods to use when ordering `ApplicationAnalystLead`.""" -enum ApplicationAnalystLeadsOrderBy { +"""Methods to use when ordering `ChangeRequestData`.""" +enum ChangeRequestDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ANALYST_ID_ASC - ANALYST_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -40177,23 +40544,25 @@ enum ApplicationAnalystLeadsOrderBy { 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 `ApplicationAnalystLead` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ChangeRequestData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnalystLeadCondition { +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 `analystId` field.""" - analystId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -40212,39 +40581,51 @@ input ApplicationAnalystLeadCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int } -"""A connection to a list of `ApplicationAnnouncement` values.""" -type ApplicationAnnouncementsConnection { - """A list of `ApplicationAnnouncement` objects.""" - nodes: [ApplicationAnnouncement]! +""" +A connection to a list of `ApplicationCommunityProgressReportData` values. +""" +type ApplicationCommunityProgressReportDataConnection { + """A list of `ApplicationCommunityProgressReportData` objects.""" + nodes: [ApplicationCommunityProgressReportData]! """ - A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsEdge!]! + edges: [ApplicationCommunityProgressReportDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnnouncement` you could get from the connection. + The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationAnnouncement implements Node { +""" +Table containing the Community Progress Report data for the given application +""" +type ApplicationCommunityProgressReportData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The foreign key of a form""" - announcementId: Int! + """Unique ID for the Community Progress Report""" + rowId: Int! - """The foreign key of an application""" - applicationId: 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 @@ -40264,56 +40645,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 - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ + """History operation""" historyOperation: String """ - Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. - """ - announcementByAnnouncementId: Announcement - - """ - Reads a single `Application` that is related to this `ApplicationAnnouncement`. + Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ ccbcUserByArchivedBy: CcbcUser } -"""Table to hold the announcement data""" -type Announcement implements Node { +"""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]! + + """ + A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + """ + edges: [ApplicationCommunityReportExcelDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. + """ + totalCount: Int! +} + +""" +Table containing the Community Report excel data for the given application +""" +type ApplicationCommunityReportExcelData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """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""" @@ -40334,195 +40806,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] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! +"""A `ApplicationCommunityReportExcelData` edge in the connection.""" +type ApplicationCommunityReportExcelDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """The `ApplicationCommunityReportExcelData` at the end of the edge.""" + node: ApplicationCommunityReportExcelData +} - """Only read the last `n` values of the set.""" - last: 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 +} - """ - 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 `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 - """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 `Application`.""" - orderBy: [ApplicationsOrderBy!] = [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: ApplicationCondition + """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: ApplicationFilter - ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """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 `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `ApplicationClaimsData` values.""" +type ApplicationClaimsDataConnection { + """A list of `ApplicationClaimsData` objects.""" + nodes: [ApplicationClaimsData]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsDataEdge!]! - """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* `ApplicationClaimsData` 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 - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! +"""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! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Unique id for the claims""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """Id of the application the claims belongs to""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The claims form json data""" + jsonData: JSON! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The id of the excel data that this record is associated with""" + excelDataId: 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 - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( - """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 + """Column to track if record was created, updated or deleted for history""" + historyOperation: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `Application` that is related to this `ApplicationClaimsData`. + """ + applicationByApplicationId: Application - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + 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 `ApplicationClaimsData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! +"""A `ApplicationClaimsData` edge in the connection.""" +type ApplicationClaimsDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationClaimsData` at the end of the edge.""" + node: ApplicationClaimsData } -"""Methods to use when ordering `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 @@ -40535,8 +41006,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 @@ -40544,16 +41013,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 @@ -40572,41 +41047,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 @@ -40626,285 +41104,285 @@ 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.""" + """ + The count of *all* `ApplicationMilestoneData` 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 - +"""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 `ApplicationFormData` values.""" -type ApplicationFormDataConnection { - """A list of `ApplicationFormData` objects.""" - nodes: [ApplicationFormData]! +"""A connection to a list of `ApplicationMilestoneExcelData` values.""" +type ApplicationMilestoneExcelDataConnection { + """A list of `ApplicationMilestoneExcelData` objects.""" + nodes: [ApplicationMilestoneExcelData]! """ - A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. """ - edges: [ApplicationFormDataEdge!]! + edges: [ApplicationMilestoneExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationFormData` you could get from the connection. + The count of *all* `ApplicationMilestoneExcelData` 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 { +"""Table containing the milestone excel data for the given application""" +type ApplicationMilestoneExcelData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique ID for the milestone excel 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 + """ID of the application this data belongs to""" + applicationId: Int - """Column referencing the form data status type, defaults to draft""" - formDataStatusTypeId: String + """The data imported from the excel filled by the respondent""" + jsonData: JSON! """created by user id""" createdBy: Int @@ -40924,322 +41402,186 @@ 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 `ApplicationMilestoneExcelData`. """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `Form` that is related to this `FormData`.""" - formByFormSchemaId: Form - - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByFormDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int +"""A `ApplicationMilestoneExcelData` edge in the connection.""" +type ApplicationMilestoneExcelDataEdge { + """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 `ApplicationMilestoneExcelData` at the end of the edge.""" + node: ApplicationMilestoneExcelData +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" +enum ApplicationMilestoneExcelDataOrderBy { + 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 +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `ApplicationMilestoneExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationMilestoneExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """computed column to display whether form_data is editable or not""" - isEditable: Boolean + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormDataFormDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationInternalDescription` values.""" +type ApplicationInternalDescriptionsConnection { + """A list of `ApplicationInternalDescription` objects.""" + nodes: [ApplicationInternalDescription]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. + """ + edges: [ApplicationInternalDescriptionsEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! + """ + The count of *all* `ApplicationInternalDescription` you could get from the connection. + """ + totalCount: Int! } -"""The statuses applicable to a form""" -type FormDataStatusType implements Node { +"""Table containing the internal description for the given application""" +type ApplicationInternalDescription implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The 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 - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! + """Unique id for the row""" + rowId: Int! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataFormDataStatusTypeIdAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """Id of the application the description belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """The internal description for the given application""" + 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 + """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 `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! -} + """archived at timestamp""" + archivedAt: Datetime -"""A connection to a list of `FormData` values.""" -type FormDataConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! + """ + Reads a single `Application` that is related to this `ApplicationInternalDescription`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `FormData` and cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. """ - edges: [FormDataEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `FormData` edge in the connection.""" -type FormDataEdge { +"""A `ApplicationInternalDescription` edge in the connection.""" +type ApplicationInternalDescriptionsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormData` at the end of the edge.""" - node: FormData + """The `ApplicationInternalDescription` at the end of the edge.""" + node: ApplicationInternalDescription } -"""Methods to use when ordering `FormData`.""" -enum FormDataOrderBy { +"""Methods to use when ordering `ApplicationInternalDescription`.""" +enum ApplicationInternalDescriptionsOrderBy { NATURAL ID_ASC ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - LAST_EDITED_PAGE_ASC - LAST_EDITED_PAGE_DESC - FORM_DATA_STATUS_TYPE_ID_ASC - FORM_DATA_STATUS_TYPE_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -41252,30 +41594,23 @@ 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 `ApplicationInternalDescription` object types. +All fields are tested for equality and combined with a logical ‘and.’ """ -input FormDataCondition { +input ApplicationInternalDescriptionCondition { """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 `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 `description` field.""" + description: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -41294,278 +41629,279 @@ input FormDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `formSchemaId` field.""" - formSchemaId: Int - - """Checks for equality with the object’s `reasonForChange` field.""" - reasonForChange: String } -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationProjectType` values.""" +type ApplicationProjectTypesConnection { + """A list of `ApplicationProjectType` objects.""" + nodes: [ApplicationProjectType]! """ - 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 `ApplicationProjectType` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationProjectTypesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationProjectType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the 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! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the application_project_type""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this application_project_type belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """Column containing the project type of the application""" + projectType: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationProjectType`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { +"""A `ApplicationProjectType` edge in the connection.""" +type ApplicationProjectTypesEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationProjectType` at the end of the edge.""" + node: ApplicationProjectType +} - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """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 `FormData`.""" - orderBy: [FormDataOrderBy!] = [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: FormDataCondition + """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: FormDataFilter - ): FormDataConnection! + """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 `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Notification` values.""" +type NotificationsConnection { + """A list of `Notification` objects.""" + nodes: [Notification]! """ - 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 `Notification` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! + edges: [NotificationsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Notification` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""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! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for each notification""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( - """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 `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} + """updated at timestamp""" + updatedAt: Datetime! -"""A connection to a list of `Form` values, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! + """archived by user id""" + archivedBy: Int - """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! + """archived at timestamp""" + archivedAt: Datetime - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `Application` that is related to this `Notification`.""" + applicationByApplicationId: Application - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! + """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 + + """Reads a single `CcbcUser` that is related to this `Notification`.""" + ccbcUserByArchivedBy: CcbcUser } -"""Table to hold the json_schema for forms""" -type Form implements Node { +"""Table containing list of application email_records""" +type EmailRecord implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key on form""" + """Unique ID for each email sent""" rowId: Int! - """The end url for the form data""" - slug: String + """Email Address(es) of the recipients""" + toEmail: String - """The JSON schema for the respective form""" - jsonSchema: JSON! + """Email Address(es) of the CC recipients""" + ccEmail: String - """Description of the form""" - description: String + """Subject of the email""" + subject: String - """The type of form being stored""" - formType: String + """Body of the email""" + body: String - """Reads a single `FormType` that is related to this `Form`.""" - formTypeByFormType: FormType + """Message ID of the email returned by the email server""" + messageId: String - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """Additional data for the email""" + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """created by user id""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated by user id""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """archived by user id""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived at timestamp""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByCreatedBy: CcbcUser - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """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( """Only read the first `n` values of the set.""" first: Int @@ -41584,22 +41920,22 @@ type Form implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationEmailRecordIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -41618,22 +41954,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 - ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + ccbcUsersByNotificationEmailRecordIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41664,10 +42000,10 @@ type Form implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41698,24 +42034,10 @@ type Form implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! -} - -"""Table containing the different types of forms used in the application""" -type FormType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier of the type of form""" - name: String! - - """Description of the type of form""" - description: String + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationEmailRecordIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41734,202 +42056,118 @@ type FormType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): FormsConnection! -} - -"""A connection to a list of `Form` values.""" -type FormsConnection { - """A list of `Form` objects.""" - nodes: [Form]! - - """ - A list of edges which contains the `Form` and cursor to aid in pagination. - """ - edges: [FormsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! -} - -"""A `Form` edge in the connection.""" -type FormsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Form` at the end of the edge.""" - node: Form + filter: CcbcUserFilter + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `Form`.""" -enum FormsOrderBy { +"""Methods to use when ordering `Notification`.""" +enum NotificationsOrderBy { 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 + 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 `Form` 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 FormCondition { +input NotificationCondition { """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 - - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `notificationType` field.""" + notificationType: 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 `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 `emailRecordId` field.""" + emailRecordId: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [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: FormDataCondition + """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: FormDataFilter - ): FormDataConnection! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -"""Methods to use when ordering `FormDataStatusType`.""" -enum FormDataStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime -""" -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 `archivedBy` field.""" + archivedBy: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `Notification`. """ -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { + """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 `Notification`, and the cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! """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 `Notification`.""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { """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 `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -41948,32 +42186,32 @@ type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41982,16 +42220,16 @@ 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 `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42010,32 +42248,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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42044,16 +42282,16 @@ 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 `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42072,31 +42310,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `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 `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42115,144 +42372,71 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: NotificationCondition """ 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: NotificationFilter + ): NotificationsConnection! } -"""A `ApplicationFormData` edge in the connection.""" -type ApplicationFormDataEdge { +"""A `Notification` edge in the connection.""" +type NotificationsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationFormData` at the end of the edge.""" - node: ApplicationFormData + """The `Notification` at the end of the edge.""" + node: Notification } -"""A connection to a list of `ApplicationRfiData` values.""" -type ApplicationRfiDataConnection { - """A list of `ApplicationRfiData` objects.""" - nodes: [ApplicationRfiData]! +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! """ - A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataEdge!]! + edges: [ApplicationPendingChangeRequestsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationRfiData` you could get from the connection. + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationRfiData 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! - """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 -} + """Unique ID for the application_pending_change_request""" + rowId: Int! -"""Table to hold RFI form data""" -type RfiData implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + ID of the application this application_pending_change_request belongs to """ - id: ID! - - """The unique id of the form data""" - rowId: Int! + applicationId: Int - """Reference number assigned to the RFI""" - rfiNumber: String + """Column defining if the change request pending or not""" + isPending: Boolean """ - 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) + Column containing the comment for the change request or completion of the change request """ - jsonData: JSON! - - """Column referencing the form data status type, defaults to draft""" - rfiDataStatusTypeId: String + comment: String """created by user id""" createdBy: Int @@ -42272,300 +42456,191 @@ type RfiData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByRfiDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! - - """Computed column to return all attachement rows for an rfi_data row""" - attachments( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { + """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 `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""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 +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `ApplicationPendingChangeRequest` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationRfiDataRfiDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `comment` field.""" + comment: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """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 `Application`.""" - orderBy: [ApplicationsOrderBy!] = [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: ApplicationCondition + """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: ApplicationFilter - ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""The statuses applicable to an RFI""" -type RfiDataStatusType implements Node { +"""A connection to a list of `ApplicationAnnounced` values.""" +type ApplicationAnnouncedsConnection { + """A list of `ApplicationAnnounced` objects.""" + nodes: [ApplicationAnnounced]! + """ - 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 `ApplicationAnnounced` and cursor to aid in pagination. """ - 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 `RfiData`.""" - rfiDataByRfiDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: RfiDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): RfiDataConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor + edges: [ApplicationAnnouncedsEdge!]! - """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* `ApplicationAnnounced` 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 if the application has been announced by BC or ISED""" +type ApplicationAnnounced 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 - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! + """Unique ID for the application_announced""" + rowId: Int! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this record belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """Whether the application has been announced by BC or ISED""" + announced: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! -} + """archived at timestamp""" + archivedAt: Datetime -"""A connection to a list of `RfiData` values.""" -type RfiDataConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! + """ + Reads a single `Application` that is related to this `ApplicationAnnounced`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `RfiData` and cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. """ - edges: [RfiDataEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnounced`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `RfiData` edge in the connection.""" -type RfiDataEdge { +"""A `ApplicationAnnounced` edge in the connection.""" +type ApplicationAnnouncedsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """The `ApplicationAnnounced` at the end of the edge.""" + node: ApplicationAnnounced } -"""Methods to use when ordering `RfiData`.""" -enum RfiDataOrderBy { +"""Methods to use when ordering `ApplicationAnnounced`.""" +enum ApplicationAnnouncedsOrderBy { 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 + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ANNOUNCED_ASC + ANNOUNCED_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -42583,20 +42658,18 @@ enum RfiDataOrderBy { } """ -A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnnounced` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input RfiDataCondition { +input ApplicationAnnouncedCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `rfiNumber` field.""" - rfiNumber: String - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: String + """Checks for equality with the object’s `announced` field.""" + announced: Boolean """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -42617,33 +42690,186 @@ input RfiDataCondition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { - """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 `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement` and cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + 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 `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { +"""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 + """The `Announcement` at the end of the edge.""" + node: Announcement +} - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( +"""A connection to a list of `HistoryItem` values.""" +type HistoryItemsConnection { + """A list of `HistoryItem` objects.""" + nodes: [HistoryItem]! + + """ + A list of edges which contains the `HistoryItem` and cursor to aid in pagination. + """ + edges: [HistoryItemsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `HistoryItem` you could get from the connection.""" + totalCount: Int! +} + +""" +This is a type used to return records of history data in the application_history computed column +""" +type HistoryItem { + """Application Id.""" + applicationId: Int + + """Timestamp of the operation recorded.""" + createdAt: Datetime + + """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" + op: Operation + + """Table name.""" + tableName: String + + """ + Identifier that uniquely identifies a record by primary key [primary key + table_oid]. + """ + recordId: UUID + + """New record in Json format.""" + record: JSON + + """Old record in Json format.""" + oldRecord: JSON + + """ + Main object affected by the operation (i.e. status, or file name or RFI type). + """ + item: String + + """First Name of the user who performed the operation.""" + familyName: String + + """Last Name of the user who performed the operation.""" + givenName: String + + """Session sub of the user who performed the operation.""" + sessionSub: String + + """User is an external analyst""" + externalAnalyst: Boolean +} + +"""A `HistoryItem` edge in the connection.""" +type HistoryItemsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `HistoryItem` at the end of the edge.""" + node: HistoryItem +} + +""" +A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ +""" +input HistoryItemFilter { + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `op` field.""" + op: OperationFilter + + """Filter by the object’s `tableName` field.""" + tableName: StringFilter + + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter + + """Filter by the object’s `record` field.""" + record: JSONFilter + + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter + + """Filter by the object’s `item` field.""" + item: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter + + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter + + """Checks for all expressions in this list.""" + and: [HistoryItemFilter!] + + """Checks for any expressions in this list.""" + or: [HistoryItemFilter!] + + """Negates the expression.""" + not: HistoryItemFilter +} + +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! + + """ + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ + totalCount: Int! +} + +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -42662,30 +42888,70 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { +"""Methods to use when ordering `ApplicationStatusType`.""" +enum ApplicationStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + VISIBLE_BY_APPLICANT_ASC + VISIBLE_BY_APPLICANT_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + VISIBLE_BY_ANALYST_ASC + VISIBLE_BY_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationStatusType` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `visibleByApplicant` field.""" + visibleByApplicant: Boolean + + """Checks for equality with the object’s `statusOrder` field.""" + statusOrder: Int + + """Checks for equality with the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: Boolean +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, 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: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42694,16 +42960,18 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42722,30 +42990,32 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42754,16 +43024,18 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42782,261 +43054,242 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""Methods to use when ordering `ApplicationRfiData`.""" -enum ApplicationRfiDataOrderBy { - NATURAL - RFI_DATA_ID_ASC - RFI_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationRfiData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationRfiDataCondition { - """Checks for equality with the object’s `rfiDataId` field.""" - rfiDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationRfiData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationRfiData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { """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 -"""A `ApplicationRfiData` edge in the connection.""" -type ApplicationRfiDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The `ApplicationRfiData` at the end of the edge.""" - node: ApplicationRfiData -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `Announcement` values.""" -type AnnouncementsConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! + """ + 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 `Announcement` and cursor to aid in pagination. - """ - edges: [AnnouncementsEdge!]! + """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* `Announcement` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] -"""A `Announcement` edge in the connection.""" -type AnnouncementsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """The `Announcement` at the end of the edge.""" - node: Announcement + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `HistoryItem` values.""" -type HistoryItemsConnection { - """A list of `HistoryItem` objects.""" - nodes: [HistoryItem]! +""" +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 `HistoryItem` and 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: [HistoryItemsEdge!]! + edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `HistoryItem` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -This is a type used to return records of history data in the application_history computed column +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type HistoryItem { - """Application Id.""" - applicationId: Int - - """Timestamp of the operation recorded.""" - createdAt: Datetime - - """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" - op: Operation - - """Table name.""" - tableName: String - - """ - Identifier that uniquely identifies a record by primary key [primary key + table_oid]. - """ - recordId: UUID +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """New record in Json format.""" - record: JSON + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Old record in Json format.""" - oldRecord: JSON + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int - """ - Main object affected by the operation (i.e. status, or file name or RFI type). - """ - item: String + """Only read the last `n` values of the set.""" + last: Int - """First Name of the user who performed the operation.""" - familyName: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Last Name of the user who performed the operation.""" - givenName: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Session sub of the user who performed the operation.""" - sessionSub: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """User is an external analyst""" - externalAnalyst: Boolean -} + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] -"""A `HistoryItem` edge in the connection.""" -type HistoryItemsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """The `HistoryItem` at the end of the edge.""" - node: HistoryItem + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -input HistoryItemFilter { - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Filter by the object’s `op` field.""" - op: OperationFilter + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! - """Filter by the object’s `tableName` field.""" - tableName: StringFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Filter by the object’s `record` field.""" - record: JSONFilter +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { + """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 `Attachment`.""" + attachmentsByCreatedBy( + """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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [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: AttachmentCondition - """Negates the expression.""" - not: HistoryItemFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { + """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! """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`. -""" -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """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 `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43055,55 +43308,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: AttachmentCondition """ 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: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43112,16 +43342,16 @@ 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 `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 `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43140,50 +43370,84 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `FormData` values, with data from `ApplicationFormData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - 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 `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `FormData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { +""" +A `FormData` edge in the connection, with data from `ApplicationFormData`. +""" +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormData` at the end of the edge.""" + node: FormData +} - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( +""" +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +""" +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! + + """ + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + """ + edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Analyst` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Analyst` at the end of the edge.""" + node: Analyst + + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -43202,32 +43466,99 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + 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 connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { +input AnalystCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `givenName` field.""" + givenName: String + + """Checks for equality with the object’s `familyName` field.""" + familyName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `active` field.""" + active: Boolean + + """Checks for equality with the object’s `email` field.""" + email: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43236,16 +43567,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 `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43264,32 +43599,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43299,9 +43634,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43309,9 +43644,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - conditionalApprovalDataByCreatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43330,32 +43665,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43365,9 +43700,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -43375,9 +43710,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - conditionalApprovalDataByUpdatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43396,54 +43731,82 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! """ - 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 `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `RfiData` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +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]! + + """ + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + 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 ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -43462,32 +43825,55 @@ 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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + 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 connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A condition to be used against `AssessmentType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { +input AssessmentTypeCondition { + """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 `AssessmentData`. +""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43496,20 +43882,16 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { +"""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 `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43528,32 +43910,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByMa """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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43562,20 +43944,16 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { +"""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 `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43594,32 +43972,32 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByMa """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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43628,20 +44006,16 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43660,52 +44034,52 @@ type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByM """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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43724,84 +44098,32 @@ 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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -"""Methods to use when ordering `GisData`.""" -enum GisDataOrderBy { - NATURAL - ID_ASC - 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 `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input GisDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: 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 + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43811,17 +44133,17 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43840,32 +44162,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43875,17 +44197,17 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43904,32 +44226,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43939,17 +44261,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43968,32 +44292,32 @@ 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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44003,9 +44327,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44013,9 +44337,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - projectInformationDataByCreatedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44034,32 +44358,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44069,9 +44393,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44079,9 +44403,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - projectInformationDataByUpdatedBy( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44100,54 +44424,52 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - 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 `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! """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 `ProjectInformationData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { """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 `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -44166,32 +44488,84 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} + +"""Methods to use when ordering `GisData`.""" +enum GisDataOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection { +input GisDataCondition { + """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 `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 `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44201,17 +44575,17 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44230,32 +44604,32 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44265,17 +44639,17 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44294,32 +44668,32 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44329,17 +44703,17 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44358,96 +44732,146 @@ type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! """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 `ApplicationClaimsData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( - """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 `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """archived at timestamp""" + archivedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition + """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: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + 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 connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A condition to be used against `Announcement` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { +input AnnouncementCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `ccbcNumbers` field.""" + ccbcNumbers: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `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 `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44457,17 +44881,19 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44486,32 +44912,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44521,17 +44947,19 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44550,32 +44978,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44585,9 +45013,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44595,9 +45023,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44616,32 +45044,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44651,9 +45079,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44661,9 +45089,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44682,32 +45110,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44717,9 +45145,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44727,9 +45155,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationClaimsExcelDataByArchivedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44748,32 +45176,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44783,9 +45211,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -44793,9 +45221,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44814,34 +45242,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44851,19 +45277,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44882,34 +45306,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44919,19 +45341,17 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44950,34 +45370,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44987,19 +45405,17 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45018,32 +45434,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45053,9 +45469,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45063,9 +45479,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45084,32 +45500,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45119,9 +45535,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45129,9 +45545,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationCommunityReportExcelDataByArchivedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45150,32 +45566,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45185,9 +45601,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45195,9 +45611,9 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationInternalDescriptionsByCreatedBy( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45216,32 +45632,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45251,19 +45667,17 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45282,32 +45696,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45317,19 +45731,17 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45348,32 +45760,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45383,19 +45795,17 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { +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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45414,32 +45824,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45449,9 +45859,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45459,9 +45869,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationMilestoneDataByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45480,32 +45890,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45515,9 +45927,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45525,9 +45937,9 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationMilestoneDataByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45546,32 +45958,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45581,9 +45995,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45591,9 +46005,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45612,32 +46026,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45647,9 +46063,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45657,9 +46073,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45678,32 +46094,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45713,9 +46129,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -45723,9 +46139,9 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45744,32 +46160,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45779,17 +46195,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45808,32 +46226,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45843,17 +46261,17 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +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 `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45872,32 +46290,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45907,17 +46325,17 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45936,32 +46354,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45971,17 +46389,17 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46000,32 +46418,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46035,17 +46453,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46064,32 +46484,32 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46099,17 +46519,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46128,50 +46550,54 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { + """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { """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 `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46190,110 +46616,32 @@ type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""Methods to use when ordering `EmailRecord`.""" -enum EmailRecordsOrderBy { - NATURAL - ID_ASC - ID_DESC - TO_EMAIL_ASC - TO_EMAIL_DESC - CC_EMAIL_ASC - CC_EMAIL_DESC - SUBJECT_ASC - SUBJECT_DESC - BODY_ASC - BODY_DESC - MESSAGE_ID_ASC - MESSAGE_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `EmailRecord` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input EmailRecordCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `toEmail` field.""" - toEmail: String - - """Checks for equality with the object’s `ccEmail` field.""" - ccEmail: String - - """Checks for equality with the object’s `subject` field.""" - subject: String - - """Checks for equality with the object’s `body` field.""" - body: String - - """Checks for equality with the object’s `messageId` field.""" - messageId: String - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46302,16 +46650,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46330,32 +46682,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46364,16 +46716,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46392,32 +46748,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46426,16 +46782,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46454,32 +46814,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46489,17 +46849,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46518,32 +46880,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + 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 `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46553,17 +46915,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46582,32 +46946,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + 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 `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46617,17 +46981,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46646,32 +47012,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46681,9 +47047,9 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46691,9 +47057,9 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationPendingChangeRequestsByCreatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46712,32 +47078,32 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46747,9 +47113,9 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46757,9 +47123,9 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46778,32 +47144,32 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46813,9 +47179,9 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -46823,9 +47189,9 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46844,19 +47210,19 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ @@ -47058,38 +47424,34 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - 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 `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! + edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -47108,94 +47470,110 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: NotificationFilter + ): NotificationsConnection! +} + +"""Methods to use when ordering `EmailRecord`.""" +enum EmailRecordsOrderBy { + NATURAL + ID_ASC + ID_DESC + TO_EMAIL_ASC + TO_EMAIL_DESC + CC_EMAIL_ASC + CC_EMAIL_DESC + SUBJECT_ASC + SUBJECT_DESC + BODY_ASC + BODY_DESC + MESSAGE_ID_ASC + MESSAGE_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A condition to be used against `EmailRecord` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! +input EmailRecordCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `toEmail` field.""" + toEmail: String - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Checks for equality with the object’s `ccEmail` field.""" + ccEmail: String -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `subject` field.""" + subject: String - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Checks for equality with the object’s `body` field.""" + body: String - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `messageId` field.""" + messageId: String - """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 `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47204,16 +47582,16 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47232,32 +47610,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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47266,16 +47644,16 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnect totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47294,54 +47672,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { + """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 `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! """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 ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { """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 `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47360,99 +47734,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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: NotificationCondition """ 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: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47462,9 +47769,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47472,9 +47779,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationAnalystLeadsByCreatedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47493,32 +47800,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47528,9 +47835,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47538,9 +47845,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationAnalystLeadsByUpdatedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47559,32 +47866,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47594,9 +47901,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -47604,9 +47911,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationAnalystLeadsByArchivedBy( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47625,146 +47932,96 @@ 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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyConnection { + """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge!]! """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 `ApplicationAnnounced`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndCreatedByManyToManyEdge { """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 - - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - 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 + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `ccbcNumbers` field.""" - ccbcNumbers: String + """Reads and enables pagination through a set of `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( + """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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition - """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: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47774,19 +48031,17 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47805,32 +48060,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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47840,19 +48095,17 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationAnnouncedApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47871,32 +48124,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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! +} + +"""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! @@ -47905,20 +48167,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 @@ -47937,114 +48195,50 @@ 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! -} - -""" -A connection to a list of `FormData` values, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! - - """ - A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! -} - -""" -A `FormData` edge in the connection, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `FormData` at the end of the edge.""" - node: FormData -} - -""" -A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. -""" -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! - - """ - A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. - """ - edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! -} - -""" -A `RfiData` edge in the connection, with data from `ApplicationRfiData`. -""" -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RfiData` at the end of the edge.""" - node: RfiData + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { + """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 `Application`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! """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`. -""" -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """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 `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48063,70 +48257,32 @@ type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCondition """ 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: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48135,18 +48291,16 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { +"""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 `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48165,199 +48319,238 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""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 `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + edges: [RecordVersionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `RecordVersion` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +Table for tracking history records on tables that auditing is enabled on """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Primary key 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! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """The user that created the record""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """The timestamp of when the record was created""" + 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 + """The record in JSON format""" + record: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The previous version of the record in JSON format""" + oldRecord: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" + ccbcUserByCreatedBy: CcbcUser +} - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! +"""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 connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A condition to be used against `RecordVersion` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +input RecordVersionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: BigInt - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Checks for equality with the object’s `op` field.""" + op: Operation -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `ts` field.""" + ts: Datetime - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Checks for equality with the object’s `tableOid` field.""" + tableOid: BigFloat - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `tableSchema` field.""" + tableSchema: String - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `tableName` field.""" + tableName: 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 `record` field.""" + record: JSON - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `oldRecord` field.""" + oldRecord: JSON +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """ + 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 `Application` edge in the connection.""" -type ApplicationsEdge { +"""A `GisData` edge in the connection.""" +type GisDataEdge { """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 } -"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" -type CbcApplicationPendingChangeRequestsConnection { - """A list of `CbcApplicationPendingChangeRequest` objects.""" - nodes: [CbcApplicationPendingChangeRequest]! +"""A connection to a list of `CbcProject` values.""" +type CbcProjectsConnection { + """A list of `CbcProject` objects.""" + nodes: [CbcProject]! """ - A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. + A list of edges which contains the `CbcProject` and cursor to aid in pagination. """ - edges: [CbcApplicationPendingChangeRequestsEdge!]! + edges: [CbcProjectsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. - """ + """The count of *all* `CbcProject` you could get from the connection.""" totalCount: Int! } -"""Table containing the pending change request details of the application""" -type CbcApplicationPendingChangeRequest implements Node { +"""Table containing the data imported from the CBC projects excel file""" +type CbcProject implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the cbc_application_pending_change_request""" + """Unique ID for the row""" rowId: Int! - """ - ID of the cbc application this cbc_application_pending_change_request belongs to - """ - cbcId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean + """The data imported from the excel for that cbc project""" + jsonData: JSON! - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime """created by user id""" createdBy: Int @@ -48377,25 +48570,124 @@ type CbcApplicationPendingChangeRequest implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. - """ - cbcByCbcId: Cbc - - """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. - """ + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" ccbcUserByCreatedBy: CcbcUser + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""A `CbcProject` edge in the connection.""" +type CbcProjectsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """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 + + """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 `EmailRecord` values.""" +type EmailRecordsConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! + """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + A list of edges which contains the `EmailRecord` and cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [EmailRecordsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `EmailRecord` you could get from the connection.""" + totalCount: Int! +} + +"""A `EmailRecord` edge in the connection.""" +type EmailRecordsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord +} + +"""A connection to a list of `Cbc` values.""" +type CbcsConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + A list of edges which contains the `Cbc` and cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser + edges: [CbcsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! } """ @@ -48443,10 +48735,8 @@ type Cbc implements Node { """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByArchivedBy: CcbcUser - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48465,22 +48755,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -48513,8 +48803,10 @@ type Cbc implements Node { filter: CbcDataFilter ): CbcDataConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48533,19 +48825,19 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! """Reads and enables pagination through a set of `CbcProjectCommunity`.""" cbcProjectCommunitiesByCbcId( @@ -48581,8 +48873,8 @@ type Cbc implements Node { filter: CbcProjectCommunityFilter ): CbcProjectCommunitiesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCbcIdAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -48601,22 +48893,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( + ccbcUsersByCbcDataCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48647,10 +48939,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( + ccbcUsersByCbcDataCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48681,10 +48973,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCbcIdAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48703,22 +48995,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataProjectNumberAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -48737,22 +49029,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndUpdatedBy( + ccbcUsersByCbcDataProjectNumberAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48783,10 +49075,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndArchivedBy( + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48817,10 +49109,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataProjectNumberAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48839,22 +49131,22 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndCreatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48885,10 +49177,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndUpdatedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48919,10 +49211,10 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndArchivedBy( + ccbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48953,7 +49245,7 @@ type Cbc implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! + ): CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CommunitiesSourceData`.""" communitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataId( @@ -49092,69 +49384,6 @@ type Cbc implements Node { ): CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" -enum CbcApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - CBC_ID_ASC - CBC_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcApplicationPendingChangeRequest` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input CbcApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `cbcId` field.""" - cbcId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - """A connection to a list of `CbcData` values.""" type CbcDataConnection { """A list of `CbcData` objects.""" @@ -49769,6 +49998,159 @@ input CbcDataCondition { archivedAt: Datetime } +"""A connection to a list of `CbcApplicationPendingChangeRequest` values.""" +type CbcApplicationPendingChangeRequestsConnection { + """A list of `CbcApplicationPendingChangeRequest` objects.""" + nodes: [CbcApplicationPendingChangeRequest]! + + """ + A list of edges which contains the `CbcApplicationPendingChangeRequest` and cursor to aid in pagination. + """ + edges: [CbcApplicationPendingChangeRequestsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `CbcApplicationPendingChangeRequest` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the pending change request details of the application""" +type CbcApplicationPendingChangeRequest implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the cbc_application_pending_change_request""" + rowId: Int! + + """ + ID of the cbc application this cbc_application_pending_change_request belongs to + """ + cbcId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Cbc` that is related to this `CbcApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc + + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `CbcApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" +type CbcApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" + node: CbcApplicationPendingChangeRequest +} + +"""Methods to use when ordering `CbcApplicationPendingChangeRequest`.""" +enum CbcApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcApplicationPendingChangeRequest` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `CbcProjectCommunity` values.""" type CbcProjectCommunitiesConnection { """A list of `CbcProjectCommunity` objects.""" @@ -50464,204 +50846,6 @@ type CbcProjectCommunitiesEdge { node: CbcProjectCommunity } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! - - """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 `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! - - """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 `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! - - """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 `CbcApplicationPendingChangeRequest`. -""" -type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! -} - """A connection to a list of `Cbc` values, with data from `CbcData`.""" type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { """A list of `Cbc` objects.""" @@ -51143,38 +51327,38 @@ type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { } """ -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge { +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51193,120 +51377,32 @@ type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCommunityCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! -} - -"""Methods to use when ordering `CommunitiesSourceData`.""" -enum CommunitiesSourceDataOrderBy { - NATURAL - ID_ASC - ID_DESC - GEOGRAPHIC_NAME_ID_ASC - GEOGRAPHIC_NAME_ID_DESC - BC_GEOGRAPHIC_NAME_ASC - BC_GEOGRAPHIC_NAME_DESC - GEOGRAPHIC_TYPE_ASC - GEOGRAPHIC_TYPE_DESC - REGIONAL_DISTRICT_ASC - REGIONAL_DISTRICT_DESC - ECONOMIC_REGION_ASC - ECONOMIC_REGION_DESC - LATITUDE_ASC - LATITUDE_DESC - LONGITUDE_ASC - LONGITUDE_DESC - MAP_LINK_ASC - MAP_LINK_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 `CommunitiesSourceData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input CommunitiesSourceDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `geographicNameId` field.""" - geographicNameId: Int - - """Checks for equality with the object’s `bcGeographicName` field.""" - bcGeographicName: String - - """Checks for equality with the object’s `geographicType` field.""" - geographicType: String - - """Checks for equality with the object’s `regionalDistrict` field.""" - regionalDistrict: String - - """Checks for equality with the object’s `economicRegion` field.""" - economicRegion: String - - """Checks for equality with the object’s `latitude` field.""" - latitude: Float - - """Checks for equality with the object’s `longitude` field.""" - longitude: Float - - """Checks for equality with the object’s `mapLink` field.""" - mapLink: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyConnection { +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51316,17 +51412,19 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyConnection { } """ -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge { +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51345,32 +51443,32 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCommunityCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyConnection { +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51380,17 +51478,19 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyConnection { } """ -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge { +type CbcCcbcUsersByCbcApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51409,52 +51509,54 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCommunityCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. + A list of edges which contains the `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge!]! + edges: [CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. """ -type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { +type CbcCommunitiesSourceDataByCbcProjectCommunityCbcIdAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -51488,94 +51590,27 @@ type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { ): CbcProjectCommunitiesConnection! } -"""A `CbcApplicationPendingChangeRequest` edge in the connection.""" -type CbcApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CbcApplicationPendingChangeRequest` at the end of the edge.""" - node: CbcApplicationPendingChangeRequest -} - -"""A connection to a list of `CbcProject` values.""" -type CbcProjectsConnection { - """A list of `CbcProject` objects.""" - nodes: [CbcProject]! - - """ - A list of edges which contains the `CbcProject` and cursor to aid in pagination. - """ - edges: [CbcProjectsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CbcProject` you could get from the connection.""" - totalCount: Int! -} - -"""Table containing the data imported from the CBC projects excel file""" -type CbcProject implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the row""" - rowId: Int! - - """The data imported from the excel for that cbc project""" - jsonData: JSON! - - """The timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime - - """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 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 { +"""Methods to use when ordering `CommunitiesSourceData`.""" +enum CommunitiesSourceDataOrderBy { NATURAL ID_ASC ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - SHAREPOINT_TIMESTAMP_ASC - SHAREPOINT_TIMESTAMP_DESC + GEOGRAPHIC_NAME_ID_ASC + GEOGRAPHIC_NAME_ID_DESC + BC_GEOGRAPHIC_NAME_ASC + BC_GEOGRAPHIC_NAME_DESC + GEOGRAPHIC_TYPE_ASC + GEOGRAPHIC_TYPE_DESC + REGIONAL_DISTRICT_ASC + REGIONAL_DISTRICT_DESC + ECONOMIC_REGION_ASC + ECONOMIC_REGION_DESC + LATITUDE_ASC + LATITUDE_DESC + LONGITUDE_ASC + LONGITUDE_DESC + MAP_LINK_ASC + MAP_LINK_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -51593,18 +51628,36 @@ enum CbcProjectsOrderBy { } """ -A condition to be used against `CbcProject` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `CommunitiesSourceData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input CbcProjectCondition { +input CommunitiesSourceDataCondition { """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 `geographicNameId` field.""" + geographicNameId: Int + + """Checks for equality with the object’s `bcGeographicName` field.""" + bcGeographicName: String + + """Checks for equality with the object’s `geographicType` field.""" + geographicType: String + + """Checks for equality with the object’s `regionalDistrict` field.""" + regionalDistrict: String + + """Checks for equality with the object’s `economicRegion` field.""" + economicRegion: String - """Checks for equality with the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: Datetime + """Checks for equality with the object’s `latitude` field.""" + latitude: Float + + """Checks for equality with the object’s `longitude` field.""" + longitude: Float + + """Checks for equality with the object’s `mapLink` field.""" + mapLink: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -51625,15 +51678,17 @@ input CbcProjectCondition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values.""" -type CcbcUsersConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUsersEdge!]! + edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51642,269 +51697,214 @@ type CcbcUsersConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection.""" -type CcbcUsersEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser -} - -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! - - """ - A list of edges which contains the `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 + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The `GisData` at the end of the edge.""" - node: GisData -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `Cbc` values.""" -type CbcsConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! + """ + 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 `Cbc` and cursor to aid in pagination. - """ - edges: [CbcsEdge!]! + """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* `Cbc` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] -"""A `Cbc` edge in the connection.""" -type CbcsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcProjectCommunityCondition - """The `Cbc` at the end of the edge.""" - node: Cbc + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CommunitiesSourceData` values.""" -type CommunitiesSourceDataConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `CommunitiesSourceData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CommunitiesSourceDataEdge!]! + edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `CommunitiesSourceData` edge in the connection.""" -type CommunitiesSourceDataEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""A connection to a list of `EmailRecord` values.""" -type EmailRecordsConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `EmailRecord` and cursor to aid in pagination. - """ - edges: [EmailRecordsEdge!]! + """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* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `EmailRecord` edge in the connection.""" -type EmailRecordsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcProjectCommunityCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! +""" +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. +""" +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [RecordVersionsEdge!]! + edges: [CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `RecordVersion` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -Table for tracking history records on tables that auditing is enabled on +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. """ -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! +type CbcCcbcUsersByCbcProjectCommunityCbcIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The timestamp of the history record""" - ts: Datetime! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """The oid of the table the record is associated with""" - tableOid: BigFloat! + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The schema of the table the record is associated with""" - tableSchema: String! + """Only read the last `n` values of the set.""" + last: Int - """The name of the table the record is associated with""" - tableName: String! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The user that created the record""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The timestamp of when the record was created""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The record in JSON format""" - record: JSON + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] - """The previous version of the record in JSON format""" - oldRecord: JSON + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcProjectCommunityCondition - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { +"""A `Cbc` edge in the connection.""" +type CbcsEdge { """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 + """The `Cbc` at the end of the edge.""" + node: Cbc } -""" -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 +"""A connection to a list of `CommunitiesSourceData` values.""" +type CommunitiesSourceDataConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! - """Checks for equality with the object’s `tableName` field.""" - tableName: String + """ + A list of edges which contains the `CommunitiesSourceData` and cursor to aid in pagination. + """ + edges: [CommunitiesSourceDataEdge!]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ + totalCount: Int! +} - """Checks for equality with the object’s `record` field.""" - record: JSON +"""A `CommunitiesSourceData` edge in the connection.""" +type CommunitiesSourceDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData } """A connection to a list of `ReportingGcpe` values.""" @@ -52030,34 +52030,34 @@ input ReportingGcpeCondition { } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """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 `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """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 `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52076,32 +52076,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 `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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52110,16 +52110,16 @@ 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 `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 `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52138,32 +52138,32 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52172,16 +52172,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52200,50 +52200,112 @@ 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 `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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type 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 `CcbcUser`.""" + ccbcUsersByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUsersConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { + """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """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 `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52262,32 +52324,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 `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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52296,16 +52358,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 `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 `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52324,32 +52386,30 @@ 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 `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 - ): ApplicationsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Application`. -""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { +"""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 `Application`, 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: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52358,16 +52418,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 `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 `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52386,50 +52446,48 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `Intake` values, with data from `Application`. -""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +"""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 `Intake`, info from the `Application`, 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: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """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 `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52448,50 +52506,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! """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 `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """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 `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -52510,32 +52568,53 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + 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 } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A condition to be used against `GaplessCounter` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { +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]! """ - 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 `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52544,16 +52623,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 `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 `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52572,52 +52651,48 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `AssessmentData`, 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: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! """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 CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """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 `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52636,52 +52711,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -52700,32 +52773,30 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { +"""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 `AssessmentData`, 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: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52734,16 +52805,16 @@ 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 `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 `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52762,32 +52833,30 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { +"""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 `AssessmentData`, 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: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52796,16 +52865,16 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +"""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 `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52824,52 +52893,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -52888,52 +52955,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - 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 `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -52952,32 +53017,32 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52986,16 +53051,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53014,32 +53079,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53048,16 +53113,16 @@ 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 `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53076,52 +53141,50 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - 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 `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -53140,52 +53203,50 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { + """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! """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`. -""" -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """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 `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53204,32 +53265,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53238,16 +53299,16 @@ 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 `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 `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53266,50 +53327,50 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { - """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 `AssessmentData`, 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: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + 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 `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -53328,32 +53389,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53362,16 +53423,16 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +"""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 `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53390,32 +53451,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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53424,16 +53485,16 @@ 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 `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 `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53452,50 +53513,52 @@ 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 `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """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 `Announcement`, 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: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + 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 `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +""" +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 `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53514,50 +53577,54 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, 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: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + 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 `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +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 `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -53576,32 +53643,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53610,16 +53677,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 `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 `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53638,32 +53707,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53672,16 +53741,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 `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53700,32 +53771,32 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53735,19 +53806,17 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53766,54 +53835,54 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, 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: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ConditionalApprovalData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -53832,32 +53901,32 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53867,19 +53936,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53898,54 +53965,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { + """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """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 `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53964,54 +54029,52 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, 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: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + 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 `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54030,54 +54093,54 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - 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 `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """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 `ConditionalApprovalData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -54096,54 +54159,52 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { + """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """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 `ApplicationStatus`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """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 `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54162,32 +54223,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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54197,19 +54258,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54228,54 +54287,50 @@ 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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { - """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 `ConditionalApprovalData`, 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: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + 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 `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54294,54 +54349,54 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - 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 `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationStatus` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -54360,32 +54415,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54394,16 +54449,16 @@ 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 `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 `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54422,32 +54477,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54456,16 +54511,16 @@ 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 `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 `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54484,48 +54539,50 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""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 `Attachment`. +""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """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 `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """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 `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54544,54 +54601,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - 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 `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationStatus` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -54610,32 +54667,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54644,16 +54701,16 @@ 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 `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 `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54672,32 +54729,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54706,16 +54763,16 @@ 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 `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54734,48 +54791,50 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""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 `Attachment`. +""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { + """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """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 `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """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 `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54794,54 +54853,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - 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 `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `FormDataStatusType` you could get from the connection. + The count of *all* `ApplicationStatus` you could get from the connection. """ totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -54860,32 +54919,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54894,16 +54953,16 @@ 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 `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 `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54922,32 +54981,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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54956,76 +55015,16 @@ 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 `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: FormDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! - - """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! - - """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, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { - """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( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55044,54 +55043,54 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -55110,32 +55109,32 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdMa """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55144,20 +55143,16 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55176,32 +55171,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToMan """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55210,20 +55205,16 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55242,54 +55233,48 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToMa """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationGisAssessmentHh`, 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: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationGisAssessmentHh`. -""" -type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { +"""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 `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -55308,54 +55293,54 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdMa """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -55374,32 +55359,32 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToMan """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55408,20 +55393,16 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55440,54 +55421,50 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToMa """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55506,54 +55483,48 @@ type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdM """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""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 `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. -""" -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Form` at the end of the edge.""" + node: Form - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -55572,54 +55543,54 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToMa """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisAssessmentHh`, 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: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -55638,52 +55609,50 @@ type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToMa """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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisAssessmentHhCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55702,52 +55671,50 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, 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: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55766,52 +55733,48 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""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 `CcbcUser`, info from the `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -55830,32 +55793,30 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55864,18 +55825,16 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55894,52 +55853,48 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `GisData` values, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +"""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 `GisData`, info from the `ApplicationGisData`, 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: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55958,52 +55913,48 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationGisData`. -""" -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `ApplicationGisData`, 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: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56022,32 +55973,30 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `CcbcUser`, info from the `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56056,18 +56005,16 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56086,32 +56033,30 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56120,18 +56065,16 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56150,52 +56093,48 @@ 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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `GisData` values, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +"""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 `GisData`, info from the `ApplicationGisData`, 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: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56214,32 +56153,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 `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56249,17 +56188,19 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56278,52 +56219,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -56342,32 +56285,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56377,17 +56320,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56406,54 +56351,54 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByApplicationId( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56472,54 +56417,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, 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: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByUpdatedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56538,54 +56483,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, 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: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByArchivedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -56604,54 +56549,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByApplicationId( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56670,32 +56615,32 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56705,9 +56650,9 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56715,9 +56660,9 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByCreatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56736,54 +56681,54 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, 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: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByArchivedBy( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56802,54 +56747,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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByApplicationId( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -56868,32 +56813,32 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56903,9 +56848,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56913,9 +56858,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByCreatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56934,32 +56879,32 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56969,9 +56914,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56979,9 +56924,9 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - projectInformationDataByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57000,19 +56945,19 @@ 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 `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ @@ -57596,33 +57541,37 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { ): RfiDataConnection! } -"""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 `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57641,48 +57590,52 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -57701,50 +57654,50 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! """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 `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57763,53 +57716,32 @@ type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `GaplessCounter`.""" -enum GaplessCountersOrderBy { - NATURAL - ID_ASC - ID_DESC - COUNTER_ASC - COUNTER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A condition to be used against `GaplessCounter` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -input GaplessCounterCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `counter` field.""" - counter: Int -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57818,16 +57750,16 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57846,48 +57778,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! + 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 `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +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 `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57906,50 +57842,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -57968,30 +57906,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 `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58000,16 +57940,16 @@ 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 `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58028,30 +57968,32 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58060,16 +58002,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type 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 `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58088,50 +58030,52 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58150,52 +58094,52 @@ type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, 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: [CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """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 `ApplicationAnnounced`. +A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """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 `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -58214,32 +58158,32 @@ type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58248,18 +58192,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58278,32 +58220,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58312,18 +58254,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58342,32 +58282,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, 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: [CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58377,17 +58317,17 @@ type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToMa } """ -A `Application` edge in the connection, with data from `ApplicationAnnounced`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58406,32 +58346,32 @@ type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58441,17 +58381,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConne } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58470,32 +58410,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58505,17 +58445,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58534,32 +58474,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnounced`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnounced`, 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: [CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58569,17 +58509,17 @@ type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationAnnounced`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationAnnounced`.""" - applicationAnnouncedsByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58598,32 +58538,32 @@ type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58633,17 +58573,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58662,32 +58602,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnounced`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnounced`, 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: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58697,17 +58637,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationAnnounced`.""" - applicationAnnouncedsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58726,32 +58666,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnounced`.""" - orderBy: [ApplicationAnnouncedsOrderBy!] = [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: ApplicationAnnouncedCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncedFilter - ): ApplicationAnnouncedsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58761,17 +58701,17 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58790,32 +58730,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58825,17 +58765,17 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58854,32 +58794,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58889,17 +58829,17 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +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 `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58918,32 +58858,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 `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58953,17 +58893,19 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """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 `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58982,32 +58924,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59017,17 +58959,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59046,32 +58990,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59081,17 +59025,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59110,32 +59056,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59145,17 +59091,19 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59174,32 +59122,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59209,17 +59157,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59238,32 +59188,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59273,17 +59223,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59302,32 +59254,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59337,9 +59289,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59347,9 +59299,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByApplicationId( + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59368,32 +59320,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59403,9 +59355,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59413,9 +59365,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByUpdatedBy( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59434,32 +59386,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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { """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 `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59469,9 +59421,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59479,9 +59431,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ConditionalApprovalData`. """ - applicationClaimsExcelDataByArchivedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59500,54 +59452,48 @@ 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 `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationClaimsExcelData`, 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: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59566,32 +59512,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59600,20 +59544,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59632,32 +59572,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59666,20 +59604,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59698,54 +59632,48 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { - """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 `ApplicationClaimsExcelData`, 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: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationClaimsExcelData`. -""" -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59764,32 +59692,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +"""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 `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59798,20 +59724,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59830,32 +59752,30 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +"""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 `ApplicationClaimsExcelData`, 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: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59864,20 +59784,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59896,54 +59812,52 @@ 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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -59962,56 +59876,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60030,34 +59940,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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60067,19 +59975,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60098,56 +60004,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60166,56 +60068,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -60234,56 +60132,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60302,56 +60196,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60370,34 +60260,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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60407,19 +60295,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60438,56 +60324,52 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { - """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 `ApplicationCommunityProgressReportData`, 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: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -60506,34 +60388,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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60543,19 +60423,17 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60574,32 +60452,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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60609,19 +60487,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60640,32 +60516,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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60675,19 +60551,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60706,54 +60580,50 @@ 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 `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60772,32 +60642,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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60806,20 +60676,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60838,32 +60704,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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60872,20 +60738,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60904,54 +60766,50 @@ 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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60970,32 +60828,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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61004,20 +60862,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +"""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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61036,32 +60890,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 `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { """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 `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61070,20 +60924,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61102,54 +60952,54 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, 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: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -61168,54 +61018,54 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61234,32 +61084,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61269,9 +61119,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61279,9 +61129,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61300,54 +61150,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, 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: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByApplicationId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61366,54 +61216,54 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByCreatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -61432,54 +61282,54 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByArchivedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61498,54 +61348,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, 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: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByApplicationId( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61564,32 +61414,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61599,9 +61449,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61609,9 +61459,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61630,54 +61480,54 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -61696,32 +61546,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61731,9 +61581,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61741,9 +61591,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByApplicationId( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61762,32 +61612,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61797,9 +61647,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61807,9 +61657,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61828,32 +61678,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61863,9 +61713,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61873,9 +61723,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61894,32 +61744,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61929,9 +61779,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61939,9 +61789,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61960,32 +61810,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61995,9 +61845,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62005,9 +61855,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByCreatedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62026,32 +61876,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62061,9 +61911,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62071,9 +61921,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByArchivedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62092,32 +61942,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62127,9 +61977,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62137,9 +61987,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62158,32 +62008,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62193,9 +62043,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62203,9 +62053,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByCreatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62224,32 +62074,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62259,9 +62109,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62269,9 +62119,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneDataByUpdatedBy( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62290,32 +62140,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62325,9 +62175,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62335,9 +62185,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62356,32 +62206,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62391,9 +62241,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62401,9 +62251,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62422,32 +62272,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62457,9 +62307,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62467,9 +62317,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62488,32 +62338,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62523,19 +62373,17 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62554,32 +62402,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62589,19 +62437,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +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 `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62620,32 +62466,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62655,19 +62501,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62686,32 +62530,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62721,19 +62565,17 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -62752,32 +62594,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62787,19 +62629,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62818,32 +62658,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62853,19 +62693,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62884,32 +62722,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62921,7 +62759,7 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62966,14 +62804,14 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62985,7 +62823,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62993,7 +62831,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63030,14 +62868,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63049,7 +62887,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63057,7 +62895,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63092,36 +62930,38 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63140,32 +62980,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63174,18 +63012,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 `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63204,32 +63040,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63238,18 +63072,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 `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63268,52 +63100,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63332,32 +63166,30 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63366,18 +63198,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type 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 `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63396,32 +63226,30 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63430,18 +63258,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63460,54 +63286,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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63526,32 +63352,30 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +"""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 `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63560,20 +63384,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63592,32 +63412,30 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +"""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 `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63626,20 +63444,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63658,54 +63472,54 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63724,32 +63538,30 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +"""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 `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63758,20 +63570,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63790,32 +63598,30 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +"""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 `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63824,20 +63630,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63856,54 +63658,54 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCbcId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63922,32 +63724,30 @@ type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +"""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 `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63956,20 +63756,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63988,32 +63784,30 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +"""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 `CbcApplicationPendingChangeRequest`, 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: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64022,20 +63816,16 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""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 `CbcApplicationPendingChangeRequest`. - """ - cbcApplicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64054,50 +63844,54 @@ type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" - orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [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: CbcApplicationPendingChangeRequestCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcApplicationPendingChangeRequestFilter - ): CbcApplicationPendingChangeRequestsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64116,32 +63910,30 @@ 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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProject`. -""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +"""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 `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64150,16 +63942,16 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64178,32 +63970,30 @@ 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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProject`. -""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +"""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 `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64212,16 +64002,16 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64240,50 +64030,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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, 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: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64302,32 +64096,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64336,16 +64130,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 `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 `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64364,32 +64162,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64398,16 +64196,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 `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 `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64426,32 +64228,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64461,17 +64263,19 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """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 `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64490,32 +64294,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64525,17 +64329,19 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64554,32 +64360,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64589,17 +64395,19 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64618,32 +64426,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64653,17 +64461,19 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """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 `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64682,32 +64492,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64717,17 +64527,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64746,32 +64558,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64781,17 +64593,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64810,52 +64624,54 @@ 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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, 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: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64874,32 +64690,30 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +"""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 `ChangeRequestData`, 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: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64908,18 +64722,16 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64938,32 +64750,30 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +"""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 `ChangeRequestData`, 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: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64972,18 +64782,16 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +"""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 `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65002,50 +64810,54 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `Notification`, 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: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65064,50 +64876,48 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { + """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """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 `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65126,32 +64936,30 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65160,16 +64968,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65188,50 +64996,54 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, 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: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65250,50 +65062,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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { + """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """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 `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65312,50 +65122,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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { + """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """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 `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65374,50 +65182,54 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65436,32 +65248,30 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65470,16 +65280,16 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type 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 `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65498,50 +65308,48 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65560,50 +65368,54 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - 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 `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65622,32 +65434,30 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +"""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 `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65656,16 +65466,16 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65684,32 +65494,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +"""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 `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65718,16 +65526,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 `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 `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65746,52 +65554,54 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationPackage`, 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: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationPackage`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -65810,32 +65620,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65844,18 +65652,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 `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 `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65874,32 +65680,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65908,18 +65712,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 `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 `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65938,32 +65740,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65973,17 +65775,17 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66002,32 +65804,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66037,17 +65839,17 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66066,32 +65868,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66101,17 +65903,17 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66130,32 +65932,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66165,17 +65967,17 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66194,32 +65996,32 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66229,17 +66031,17 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66258,32 +66060,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66293,17 +66095,17 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66322,32 +66124,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66357,19 +66159,17 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66388,32 +66188,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66423,19 +66223,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66454,32 +66252,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66489,19 +66287,17 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +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 `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66520,32 +66316,32 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66555,9 +66351,9 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66565,9 +66361,9 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio node: Application """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByApplicationId( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66586,32 +66382,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66621,9 +66419,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66631,9 +66429,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByCreatedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66652,32 +66450,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66687,9 +66487,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66697,9 +66497,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66718,32 +66518,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66753,9 +66555,9 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66763,9 +66565,9 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati node: Application """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByApplicationId( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66784,32 +66586,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66819,9 +66623,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66829,9 +66633,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByCreatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -66850,32 +66654,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66885,9 +66691,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66895,9 +66701,9 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -66916,32 +66722,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -66951,9 +66759,9 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -66961,9 +66769,9 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo node: Application """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationProjectTypesByApplicationId( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -66982,32 +66790,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67017,9 +66827,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67027,9 +66837,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationProjectTypesByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67048,32 +66858,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67083,9 +66895,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67093,9 +66905,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationProjectTypesByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67114,32 +66926,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67149,9 +66963,9 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67159,9 +66973,9 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo node: Application """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByApplicationId( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67180,32 +66994,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67215,9 +67029,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67225,9 +67039,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByCreatedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67246,32 +67060,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67281,9 +67095,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67291,9 +67105,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByArchivedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67312,32 +67126,32 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67347,9 +67161,9 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67357,9 +67171,9 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT node: Application """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByApplicationId( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67378,32 +67192,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67413,9 +67227,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67423,9 +67237,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByCreatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67444,32 +67258,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67479,9 +67293,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -67489,9 +67303,9 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationProjectType`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationProjectTypesByUpdatedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67510,50 +67324,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, 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: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67572,32 +67390,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67606,16 +67424,20 @@ 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 `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67634,32 +67456,32 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67668,16 +67490,20 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67696,50 +67522,52 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, 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: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67758,32 +67586,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67792,16 +67620,18 @@ 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 `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -67820,32 +67650,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67854,16 +67684,18 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -67882,32 +67714,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -67916,16 +67748,18 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnecti totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsData`. +""" +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 `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -67944,54 +67778,52 @@ 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 `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 `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { + """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """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 `ApplicationClaimsData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """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 `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68010,32 +67842,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 `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 CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68044,16 +67876,18 @@ 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 `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68072,50 +67906,52 @@ 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 `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 `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, 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: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68134,50 +67970,52 @@ 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 `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 `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `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: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68196,54 +68034,52 @@ 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 `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 `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { + """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationClaimsData`. """ -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """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 `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68262,50 +68098,54 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, 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: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68324,32 +68164,32 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68358,16 +68198,20 @@ 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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68386,50 +68230,54 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, 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: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68448,54 +68296,54 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - 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 `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68514,32 +68362,32 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68548,16 +68396,20 @@ 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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68576,32 +68428,32 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68610,16 +68462,20 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68638,48 +68494,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68698,30 +68560,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68730,16 +68594,20 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68758,30 +68626,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""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 `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68790,16 +68660,20 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68818,48 +68692,54 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -68878,30 +68758,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68910,16 +68792,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +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 `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -68938,30 +68824,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -68970,16 +68858,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +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 `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -68998,48 +68890,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69058,30 +68956,32 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69090,16 +68990,20 @@ 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 `ApplicationMilestoneData`. +""" +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 `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69118,30 +69022,32 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69150,16 +69056,20 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +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 `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69178,48 +69088,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `Application` values, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69238,30 +69154,32 @@ 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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69270,16 +69188,20 @@ 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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69298,30 +69220,32 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } -"""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 `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69330,16 +69254,20 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69358,32 +69286,32 @@ 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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - 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 `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69393,9 +69321,9 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69403,9 +69331,9 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69424,54 +69352,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationMilestoneExcelData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """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 `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByAnalystId( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69490,32 +69418,32 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69525,9 +69453,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69535,9 +69463,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69556,54 +69484,54 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """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`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByArchivedBy( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69622,54 +69550,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, 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: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByApplicationId( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69688,54 +69616,54 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { + """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationMilestoneExcelData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """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 `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByAnalystId( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -69754,54 +69682,54 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, 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: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByCreatedBy( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -69820,32 +69748,32 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -69855,9 +69783,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -69865,9 +69793,9 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByArchivedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69886,54 +69814,54 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, 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: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnalystLeadsByApplicationId( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -69952,54 +69880,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """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 `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """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 `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70018,32 +69942,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70052,20 +69976,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 `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 `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70084,32 +70004,32 @@ 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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70118,20 +70038,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70150,54 +70066,50 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { + """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """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 CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """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 `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70216,54 +70128,50 @@ 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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { + """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """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 CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """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 `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70282,32 +70190,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70316,20 +70224,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70348,54 +70252,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByArchivedBy( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70414,54 +70318,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByAnnouncementId( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70480,54 +70384,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByApplicationId( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70546,54 +70450,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByCreatedBy( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70612,32 +70516,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70647,9 +70551,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70657,9 +70561,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByArchivedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70678,54 +70582,54 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { + """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationInternalDescription`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByAnnouncementId( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -70744,32 +70648,32 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70779,9 +70683,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70789,9 +70693,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByApplicationId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -70810,32 +70714,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70845,9 +70749,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70855,9 +70759,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByCreatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70876,32 +70780,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70911,9 +70815,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -70921,9 +70825,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationAnnouncementsByUpdatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -70942,32 +70846,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -70977,17 +70881,19 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71006,54 +70912,54 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationProjectType`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """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 `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71072,32 +70978,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71107,17 +71013,19 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71136,52 +71044,54 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { - """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 `ApplicationStatus`, 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: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71200,52 +71110,54 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { + """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """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 `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71264,54 +71176,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { + """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationProjectType`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """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 `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71330,52 +71242,54 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { - """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 `ApplicationStatus`, 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: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + 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 `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71394,32 +71308,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71429,17 +71343,19 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71458,52 +71374,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, 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: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71522,54 +71440,50 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """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`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """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 `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71588,32 +71502,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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71622,18 +71536,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 `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 `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71652,32 +71564,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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71686,18 +71598,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 `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 `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71716,30 +71626,32 @@ 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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, 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: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71748,16 +71660,16 @@ type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -71776,30 +71688,32 @@ type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, 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: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71808,16 +71722,16 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { +"""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 `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71836,30 +71750,32 @@ type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, 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: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -71868,16 +71784,16 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { +"""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 `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -71896,48 +71812,50 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, 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: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -71956,48 +71874,50 @@ type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, 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: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! + 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 `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { +"""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 `Cbc`.""" - cbcsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -72016,30 +71936,32 @@ type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Cbc`, 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: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72048,16 +71970,16 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" -type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { +"""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 `Cbc`.""" - cbcsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72076,48 +71998,50 @@ type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, 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: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72136,48 +72060,50 @@ type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, 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: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72196,48 +72122,50 @@ type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, 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: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! + 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 `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { +"""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 `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -72256,30 +72184,32 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, 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: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72288,16 +72218,16 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72316,48 +72246,50 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, 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: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72376,48 +72308,50 @@ type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, 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: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72436,48 +72370,50 @@ type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, 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: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -72496,30 +72432,32 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, 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: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72528,16 +72466,16 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { +"""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 `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72556,48 +72494,50 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72616,48 +72556,54 @@ type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72676,30 +72622,32 @@ type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72708,16 +72656,20 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { +""" +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 `CbcData`.""" - cbcDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72736,30 +72688,32 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72768,16 +72722,20 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { +""" +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 `CbcData`.""" - cbcDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72796,52 +72754,54 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, 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: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -72860,32 +72820,32 @@ type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72895,17 +72855,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { +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 `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -72924,32 +72886,32 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -72959,17 +72921,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConne } """ -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { +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 `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -72988,52 +72952,54 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, 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: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -73052,32 +73018,32 @@ type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73087,17 +73053,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73116,32 +73084,32 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73151,17 +73119,19 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConne } """ -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { +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 `CbcDataChangeReason`.""" - cbcDataChangeReasonsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73180,52 +73150,48 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -""" -A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +"""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 `CbcData`, info from the `CbcDataChangeReason`, 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: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCbcDataId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73244,32 +73210,30 @@ type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73278,18 +73242,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73308,32 +73270,30 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { +"""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 `CcbcUser`, info from the `CbcDataChangeReason`, 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: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73342,18 +73302,16 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. -""" -type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcDataChangeReason`.""" - cbcDataChangeReasonsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73372,50 +73330,48 @@ type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcDataChangeReason`.""" - orderBy: [CbcDataChangeReasonsOrderBy!] = [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: CbcDataChangeReasonCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataChangeReasonFilter - ): CbcDataChangeReasonsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""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 `Cbc`, info from the `CbcProjectCommunity`, 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: [CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" -type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCbcId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73434,54 +73390,48 @@ type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +"""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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, 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: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73500,32 +73450,30 @@ type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection { +"""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 `CcbcUser`, info from the `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73534,18 +73482,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73564,52 +73510,48 @@ type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""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 `CcbcUser`, info from the `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! """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 `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -73628,32 +73570,30 @@ type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection { +"""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 `Cbc`, info from the `CbcProjectCommunity`, 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: [CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73662,16 +73602,16 @@ type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection { totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" -type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Cbc` at the end of the edge.""" node: Cbc - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -73690,54 +73630,48 @@ type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +"""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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, 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: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -73756,32 +73690,30 @@ type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73790,18 +73722,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -73820,52 +73750,48 @@ type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection { - """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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge!]! + 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 `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge { +"""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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -73884,32 +73810,30 @@ type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection { +"""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 `Cbc`, info from the `CbcProjectCommunity`, 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: [CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -73918,16 +73842,16 @@ type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection { totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" -type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Cbc` at the end of the edge.""" node: Cbc - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCbcId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -73946,54 +73870,48 @@ type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection { - """A list of `CommunitiesSourceData` objects.""" - nodes: [CommunitiesSourceData]! +"""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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, 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: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `CommunitiesSourceData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CommunitiesSourceData` at the end of the edge.""" - node: CommunitiesSourceData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCommunitiesSourceDataId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74012,32 +73930,30 @@ type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesS """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection { +"""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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74046,18 +73962,16 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConne totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge { +"""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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74076,52 +73990,48 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection { - """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 `CbcProjectCommunity`, 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: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge!]! + 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 `CbcProjectCommunity`. -""" -type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge { +"""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 `CbcProjectCommunity`.""" - cbcProjectCommunitiesByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -74140,52 +74050,48 @@ type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProjectCommunity`.""" - orderBy: [CbcProjectCommunitiesOrderBy!] = [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: CbcProjectCommunityCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectCommunityFilter - ): CbcProjectCommunitiesConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""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 `CcbcUser`, info from the `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! """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 `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """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 `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -74204,32 +74110,30 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection { +"""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 `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74238,18 +74142,16 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge { +"""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 `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74268,32 +74170,30 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `CommunitiesSourceData`, 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: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74302,18 +74202,16 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConn totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. -""" -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge { +"""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 `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74332,52 +74230,54 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [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: CommunitiesSourceDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! """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 `CommunitiesSourceData`. +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCbcsByCbcApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { """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 `CommunitiesSourceData`.""" - communitiesSourceDataByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -74396,32 +74296,32 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74431,17 +74331,19 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByCreatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74460,32 +74362,32 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74495,17 +74397,19 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. +A `CcbcUser` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CommunitiesSourceData`.""" - communitiesSourceDataByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74524,50 +74428,54 @@ type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CommunitiesSourceData`.""" - orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CommunitiesSourceDataCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CommunitiesSourceDataFilter - ): CommunitiesSourceDataConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! """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 `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +""" +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCbcsByCbcApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { """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 `EmailRecord`.""" - emailRecordsByUpdatedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -74586,32 +74494,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74620,16 +74528,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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74648,32 +74560,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74682,16 +74594,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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -74710,50 +74626,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Cbc` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! """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 `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +""" +A `Cbc` edge in the connection, with data from `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCbcsByCbcApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { """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 `EmailRecord`.""" - emailRecordsByArchivedBy( + """ + Reads and enables pagination through a set of `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -74772,32 +74692,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74806,16 +74726,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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74834,32 +74758,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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `CbcApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """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 `CbcApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74868,16 +74792,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 `CbcApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByCbcApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcApplicationPendingChangeRequest`. + """ + cbcApplicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -74896,50 +74824,52 @@ 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 `CbcApplicationPendingChangeRequest`.""" + orderBy: [CbcApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CbcApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: CbcApplicationPendingChangeRequestFilter + ): CbcApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge!]! """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 `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge { +""" +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCbcDataByCbcDataChangeReasonCreatedByAndCbcDataIdManyToManyEdge { """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 `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -74958,32 +74888,32 @@ type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -74992,16 +74922,18 @@ type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75020,32 +74952,32 @@ type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75054,16 +74986,18 @@ type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75082,50 +75016,52 @@ type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. + A list of edges which contains the `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge!]! """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 `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge { +""" +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCbcDataByCbcDataChangeReasonUpdatedByAndCbcDataIdManyToManyEdge { """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 `ReportingGcpe`.""" - reportingGcpesByArchivedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -75144,32 +75080,32 @@ type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75178,16 +75114,18 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByCreatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75206,32 +75144,32 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. +A connection to a list of `CcbcUser` values, with data from `CbcDataChangeReason`. """ -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75240,16 +75178,18 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" -type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ReportingGcpe`.""" - reportingGcpesByUpdatedBy( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75268,54 +75208,52 @@ type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ReportingGcpe`.""" - orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingGcpeCondition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingGcpeFilter - ): ReportingGcpesConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CbcData` values, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - 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 `CbcData`, info from the `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `CbcData` edge in the connection, with data from `CbcDataChangeReason`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +type CcbcUserCbcDataByCbcDataChangeReasonArchivedByAndCbcDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CbcData` at the end of the edge.""" + node: CbcData - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCbcDataId( """Only read the first `n` values of the set.""" first: Int @@ -75334,30 +75272,32 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""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 `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyConnection { """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 `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75366,16 +75306,18 @@ 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 `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcDataChangeReason`.""" + cbcDataChangeReasonsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75394,30 +75336,32 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } -"""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 `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyConnection { """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 `CbcDataChangeReason`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75426,16 +75370,18 @@ 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 `CbcDataChangeReason`. +""" +type CcbcUserCcbcUsersByCbcDataChangeReasonArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcDataChangeReason`.""" + cbcDataChangeReasonsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75454,54 +75400,52 @@ 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 `CbcDataChangeReason`.""" + orderBy: [CbcDataChangeReasonsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcDataChangeReasonCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcDataChangeReasonFilter + ): CbcDataChangeReasonsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75520,30 +75464,32 @@ 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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } -"""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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyConnection { """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 `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75552,16 +75498,18 @@ 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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75580,30 +75528,32 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } -"""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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyConnection { """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 `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75612,16 +75562,18 @@ 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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75640,54 +75592,52 @@ 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 `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `CommunitiesSourceData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `CcbcUser` edge in the connection, with data from `CommunitiesSourceData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +type CcbcUserCcbcUsersByCommunitiesSourceDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `CommunitiesSourceData`.""" + communitiesSourceDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -75706,30 +75656,32 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } -"""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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyConnection { """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 `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75738,16 +75690,18 @@ 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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `CommunitiesSourceData`.""" + communitiesSourceDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75766,30 +75720,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } -"""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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyConnection { """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 `CommunitiesSourceData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75798,16 +75754,18 @@ 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 `CommunitiesSourceData`. +""" +type CcbcUserCcbcUsersByCommunitiesSourceDataArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `CommunitiesSourceData`.""" + communitiesSourceDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -75826,54 +75784,50 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CommunitiesSourceData`.""" + orderBy: [CommunitiesSourceDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CommunitiesSourceDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CommunitiesSourceDataFilter + ): CommunitiesSourceDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. -""" -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" +type CcbcUserCbcsByCbcProjectCommunityCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -75892,48 +75846,54 @@ 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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - 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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +""" +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityCreatedByAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -75952,30 +75912,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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""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 `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyConnection { """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 `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -75984,16 +75946,18 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76012,54 +75976,52 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - 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 `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectCommunityCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76078,48 +76040,50 @@ 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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge!]! """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 `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" +type CcbcUserCbcsByCbcProjectCommunityUpdatedByAndCbcIdManyToManyEdge { """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 `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -76138,48 +76102,54 @@ 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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - 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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `CommunitiesSourceData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +""" +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityUpdatedByAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -76198,54 +76168,52 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `CcbcUser` values, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - 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 `CcbcUser`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76264,30 +76232,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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""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 `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyConnection { """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 `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76296,16 +76266,18 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `CbcProjectCommunity`.""" + cbcProjectCommunitiesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76324,48 +76296,50 @@ 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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Cbc` values, with data from `CbcProjectCommunity`. +""" +type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge!]! """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 `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcProjectCommunity`.""" +type CcbcUserCbcsByCbcProjectCommunityArchivedByAndCbcIdManyToManyEdge { """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 `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -76384,54 +76358,54 @@ 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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CommunitiesSourceData` values, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyConnection { + """A list of `CommunitiesSourceData` objects.""" + nodes: [CommunitiesSourceData]! """ - 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 `CommunitiesSourceData`, info from the `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationSowData` you could get from the connection. + The count of *all* `CommunitiesSourceData` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `CommunitiesSourceData` edge in the connection, with data from `CbcProjectCommunity`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +type CcbcUserCommunitiesSourceDataByCbcProjectCommunityArchivedByAndCommunitiesSourceDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CommunitiesSourceData` at the end of the edge.""" + node: CommunitiesSourceData - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCommunitiesSourceDataId( """Only read the first `n` values of the set.""" first: Int @@ -76450,30 +76424,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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""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 `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyConnection { """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 `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76482,16 +76458,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 `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `CbcProjectCommunity`.""" + cbcProjectCommunitiesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76510,30 +76488,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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } -"""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 `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyConnection { """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 `CbcProjectCommunity`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76542,16 +76522,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 `CbcProjectCommunity`. +""" +type CcbcUserCcbcUsersByCbcProjectCommunityArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `CbcProjectCommunity`.""" + cbcProjectCommunitiesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76570,54 +76552,50 @@ 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 `CbcProjectCommunity`.""" + orderBy: [CbcProjectCommunitiesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CbcProjectCommunityCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CbcProjectCommunityFilter + ): CbcProjectCommunitiesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - 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 `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76636,30 +76614,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 `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } -"""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 `ReportingGcpe`. +""" +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyConnection { """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 `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76668,16 +76648,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76696,30 +76676,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 `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } -"""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 `ReportingGcpe`. +""" +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyConnection { """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 `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76728,16 +76710,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76756,54 +76738,50 @@ 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 `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `CcbcUser` values, with data from `ReportingGcpe`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - 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 `CcbcUser`, info from the `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. -""" -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ReportingGcpe`.""" + reportingGcpesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -76822,30 +76800,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 `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } -"""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 `ReportingGcpe`. +""" +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyConnection { """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 `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76854,16 +76834,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `ReportingGcpe`.""" + reportingGcpesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76882,30 +76862,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 `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } -"""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 `ReportingGcpe`. +""" +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyConnection { """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 `ReportingGcpe`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -76914,16 +76896,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `ReportingGcpe`.""" +type CcbcUserCcbcUsersByReportingGcpeArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `ReportingGcpe`.""" + reportingGcpesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -76942,54 +76924,52 @@ 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 `ReportingGcpe`.""" + orderBy: [ReportingGcpesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ReportingGcpeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ReportingGcpeFilter + ): ReportingGcpesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationAnnounced`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncedCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -77008,30 +76988,32 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } -"""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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77040,16 +77022,18 @@ 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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77068,30 +77052,32 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } -"""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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77100,16 +77086,18 @@ 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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -77128,54 +77116,52 @@ 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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationAnnounced`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncedUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -77194,30 +77180,32 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } -"""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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77226,16 +77214,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77254,30 +77244,32 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } -"""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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77286,16 +77278,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -77314,54 +77308,52 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationAnnounced`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyConnection { + """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationAnnounced`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncedArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnnounced`.""" + applicationAnnouncedsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -77380,30 +77372,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } -"""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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77412,16 +77406,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77440,30 +77436,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } -"""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 `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnounced`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -77472,16 +77470,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnounced`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncedArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationAnnounced`.""" + applicationAnnouncedsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -77500,19 +77500,19 @@ 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 `ApplicationAnnounced`.""" + orderBy: [ApplicationAnnouncedsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationAnnouncedCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationAnnouncedFilter + ): ApplicationAnnouncedsConnection! } """ From ce70b29e6f100032f9c92b6f8d7023d18d0e10a3 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Thu, 22 Aug 2024 08:44:21 -0400 Subject: [PATCH 07/32] feat: add and remove community source behaves as expected --- .../theme/fields/ArrayLocationDataField.tsx | 8 +- .../widgets/custom/CommunitySourceWidget.tsx | 66 ++++++++---- app/pages/analyst/cbc/[cbcId].tsx | 100 +++++++++++++++--- .../analyst/cbc/[cbcId]/edit/[section].tsx | 12 +-- .../mutations/cbc/updateCbcCommunityData.ts | 30 ++++++ .../edit_cbc_project_communities.sql | 17 +-- 6 files changed, 182 insertions(+), 51 deletions(-) create mode 100644 app/schema/mutations/cbc/updateCbcCommunityData.ts diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx index 2969c59012..afcb0af38e 100644 --- a/app/lib/theme/fields/ArrayLocationDataField.tsx +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -7,6 +7,10 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { const deleteCommunitySource = formContext?.deleteCommunitySource as Function; // const addCommunitySource = formContext?.addCommunitySource as Function; + // const handleAddClick = () => { + // const newItems = items.map() + // } + return ( <> {items.map((element, index) => ( @@ -36,7 +40,9 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { type="button" onClick={() => { // get the value of the community source id - const comSourceId = element.children.props.formData.rowId; + const comSourceId = + element.children.props.formData.geographicNameId; + console.log(element.children.props.formData); if (deleteCommunitySource) { // function to delete source deleteCommunitySource(comSourceId); diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index 0280bb238f..8160485168 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -1,5 +1,5 @@ import { WidgetProps } from '@rjsf/utils'; -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import Autocomplete from '@mui/material/Autocomplete'; import { TextField } from '@mui/material'; import styled from 'styled-components'; @@ -16,13 +16,13 @@ const StyledDiv = styled.div` `; const CommunitySourceWidget: React.FC = (props) => { - const { value, formContext } = props; + const { value, formContext, onChange } = props; const { bcGeographicName, economicRegion, regionalDistrict, - rowId: comSourceId, + geographicNameId, } = value ?? {}; const [selectedEconomicRegion, setSelectedEconomicRegion] = useState< string | null @@ -31,10 +31,25 @@ const CommunitySourceWidget: React.FC = (props) => { string | null >(regionalDistrict); const [selectedGeographicName, setSelectedGeographicName] = useState({ - value: comSourceId, + value: geographicNameId, label: bcGeographicName, }); + useEffect(() => { + setSelectedEconomicRegion(economicRegion); + setSelectedRegionalDistrict(regionalDistrict); + setSelectedGeographicName({ + value: geographicNameId, + label: bcGeographicName, + }); + }, [geographicNameId, bcGeographicName, economicRegion, regionalDistrict]); + + const clearWidget = () => { + setSelectedEconomicRegion(null); + setSelectedRegionalDistrict(null); + setSelectedGeographicName({ value: null, label: '' }); + }; + const economicRegionOptions = formContext.economicRegions; const regionalDistrictOptions = formContext.regionalDistrictsByEconomicRegion; const geographicNameOptions = formContext.geographicNamesByRegionalDistrict; @@ -42,32 +57,35 @@ const CommunitySourceWidget: React.FC = (props) => { return ( { + onChange={(e, val, reason) => { + if (reason === 'clear') { + clearWidget(); + } if (e) { setSelectedEconomicRegion(val); } }} style={{ width: '300px' }} - value={economicRegion} + value={selectedEconomicRegion} options={economicRegionOptions} getOptionLabel={(option) => option} renderInput={(params) => ( - + )} /> { + onChange={(e, val, reason) => { + if (reason === 'clear') { + setSelectedRegionalDistrict(null); + setSelectedGeographicName({ value: null, label: '' }); + } if (e) { setSelectedRegionalDistrict(val); } }} + value={selectedRegionalDistrict} options={ regionalDistrictOptions[selectedEconomicRegion] ? [...regionalDistrictOptions[selectedEconomicRegion]] @@ -75,17 +93,12 @@ const CommunitySourceWidget: React.FC = (props) => { } getOptionLabel={(option) => option} renderInput={(params) => ( - + )} /> ( )} @@ -95,14 +108,25 @@ const CommunitySourceWidget: React.FC = (props) => { : [] } isOptionEqualToValue={(option, val) => { - return option.value === val; + return option.value === val.value; }} getOptionLabel={(option) => { return option.label; }} - onChange={(e, val) => { + value={selectedGeographicName} + onChange={(e, val, reason) => { + if (reason === 'clear') { + setSelectedGeographicName({ value: null, label: '' }); + return; + } if (e) { setSelectedGeographicName(val); + onChange({ + bcGeographicName: val.label, + economicRegion: selectedEconomicRegion, + regionalDistrict: selectedRegionalDistrict, + geographicNameId: val.value, + }); } }} /> diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 99f989067a..d1eb8a295d 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -9,7 +9,7 @@ import CbcForm from 'components/Analyst/CBC/CbcForm'; import { ChangeModal } from 'components/Analyst'; import styled from 'styled-components'; import ReviewTheme from 'components/Review/ReviewTheme'; -import { useEffect, useMemo, useRef, useState } from 'react'; +import { useCallback, useEffect, useMemo, useRef, useState } from 'react'; import { useUpdateCbcDataAndInsertChangeRequest } from 'schema/mutations/cbc/updateCbcDataAndInsertChangeReason'; import review from 'formSchema/analyst/cbc/review'; import reviewUiSchema from 'formSchema/uiSchema/cbc/reviewUiSchema'; @@ -20,6 +20,7 @@ import { createCbcSchemaData } from 'utils/schemaUtils'; import customValidate, { CBC_WARN_COLOR } from 'utils/cbcCustomValidator'; import CbcRecordLock from 'components/Analyst/CBC/CbcRecordLock'; import useModal from 'lib/helpers/useModal'; +import { useUpdateCbcCommunityDataMutationMutation } from 'schema/mutations/cbc/updateCbcCommunityData'; const getCbcQuery = graphql` query CbcIdQuery($rowId: Int!) { @@ -39,7 +40,7 @@ const getCbcQuery = graphql` } } } - cbcProjectCommunitiesByCbcId { + cbcProjectCommunitiesByCbcId(filter: { archivedAt: { isNull: true } }) { nodes { communitiesSourceDataByCommunitiesSourceDataId { economicRegion @@ -47,14 +48,13 @@ const getCbcQuery = graphql` geographicType regionalDistrict bcGeographicName - rowId } } } } allCommunitiesSourceData { nodes { - rowId + geographicNameId bcGeographicName economicRegion regionalDistrict @@ -104,8 +104,8 @@ const Cbc = ({ const { rowId } = query.cbcByRowId; const [formData, setFormData] = useState({} as any); const [baseFormData, setBaseFormData] = useState({} as any); - const [, setAddedCommunities] = useState([]); - const [, setRemovedCommunities] = useState([]); + const [addedCommunities, setAddedCommunities] = useState([]); + const [removedCommunities, setRemovedCommunities] = useState([]); const addCommunity = (communityId) => { setAddedCommunities((prevList) => [...prevList, communityId]); @@ -113,6 +113,57 @@ const Cbc = ({ const removeCommunity = (communityId) => { setRemovedCommunities((prevList) => [...prevList, communityId]); + const indexOfRemovedCommunity = + formData.locations.communitySourceData.findIndex( + (community) => community.geographicNameId === communityId + ); + setFormData({ + ...formData, + locations: { + ...formData.locations, + communitySourceData: [ + ...formData.locations.communitySourceData.slice( + 0, + indexOfRemovedCommunity + ), + ...formData.locations.communitySourceData.slice( + indexOfRemovedCommunity + 1 + ), + ], + }, + }); + }; + + const handleAddClick = (formPayload) => { + const communitySourceArray = formPayload.locations + .communitySourceData as Array; + const communitySourceArrayLength = + formPayload.locations.communitySourceData.length; + if (communitySourceArray[communitySourceArrayLength - 1] === undefined) { + console.log({ + ...formPayload, + locations: { + ...formPayload.locations, + communitySourceData: [ + {}, + ...communitySourceArray.slice(0, communitySourceArrayLength - 1), + ], + }, + }); + if (communitySourceArray[0]) + addCommunity(communitySourceArray[0].geographicNameId); + return { + ...formPayload, + locations: { + ...formPayload.locations, + communitySourceData: [ + {}, + ...communitySourceArray.slice(0, communitySourceArrayLength - 1), + ], + }, + }; + } + return formPayload; }; const changeModal = useModal(); @@ -127,17 +178,14 @@ const Cbc = ({ const geographicNamesByRegionalDistrict = useMemo(() => { const regionalDistrictGeographicNamesDict = {}; allCommunitiesSourceData.forEach((community) => { - const { - regionalDistrict, - bcGeographicName, - rowId: communityRowId, - } = community; + const { regionalDistrict, bcGeographicName, geographicNameId } = + community; if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); } regionalDistrictGeographicNamesDict[regionalDistrict].add({ label: bcGeographicName, - value: communityRowId, + value: geographicNameId, }); }); return regionalDistrictGeographicNamesDict; @@ -220,12 +268,37 @@ const Cbc = ({ }, [query, isCbcAdmin, editFeatureEnabled, cbcCommunitiesData]); const [updateFormData] = useUpdateCbcDataAndInsertChangeRequest(); + const [updateCbcCommunitySourceData] = + useUpdateCbcCommunityDataMutationMutation(); const handleChangeRequestModal = () => { setChangeReason(null); changeModal.open(); }; + const handleUpdateCommunitySource = useCallback(() => { + console.log(addedCommunities, removedCommunities); + updateCbcCommunitySourceData({ + variables: { + input: { + _projectId: query?.cbcByRowId?.cbcDataByCbcId?.edges[0].node.rowId, + _communityIdsToAdd: addedCommunities, + _communityIdsToArchive: removedCommunities, + }, + }, + debounceKey: 'cbc_update_community_source_data', + onCompleted: () => { + setAddedCommunities([]); + setRemovedCommunities([]); + }, + }); + }, [ + addedCommunities, + removedCommunities, + updateCbcCommunitySourceData, + query, + ]); + const handleSubmit = () => { const { geographicNames, @@ -261,6 +334,7 @@ const Cbc = ({ onCompleted: () => { setEditMode(false); changeModal.close(); + handleUpdateCommunitySource(); setAllowEdit(isCbcAdmin && editFeatureEnabled); }, }); @@ -392,7 +466,7 @@ const Cbc = ({ }} formData={formData} handleChange={(e) => { - setFormData({ ...e.formData }); + setFormData(handleAddClick(e.formData)); }} hiddenSubmitRef={hiddenSubmitRef} isExpanded diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index a4d18bb896..e7f341fa72 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -46,14 +46,13 @@ const getCbcSectionQuery = graphql` geographicType regionalDistrict bcGeographicName - rowId } } } } allCommunitiesSourceData { nodes { - rowId + geographicNameId bcGeographicName economicRegion regionalDistrict @@ -101,17 +100,14 @@ const EditCbcSection = ({ const geographicNamesByRegionalDistrict = useMemo(() => { const regionalDistrictGeographicNamesDict = {}; allCommunitiesSourceData.forEach((community) => { - const { - regionalDistrict, - bcGeographicName, - rowId: communityRowId, - } = community; + const { regionalDistrict, bcGeographicName, geographicNameId } = + community; if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); } regionalDistrictGeographicNamesDict[regionalDistrict].add({ label: bcGeographicName, - value: communityRowId, + value: geographicNameId, }); }); return regionalDistrictGeographicNamesDict; diff --git a/app/schema/mutations/cbc/updateCbcCommunityData.ts b/app/schema/mutations/cbc/updateCbcCommunityData.ts new file mode 100644 index 0000000000..9d944fb08b --- /dev/null +++ b/app/schema/mutations/cbc/updateCbcCommunityData.ts @@ -0,0 +1,30 @@ +import { graphql } from 'react-relay'; +import { updateCbcCommunityDataMutation } from '__generated__/updateCbcCommunityDataMutation.graphql'; +import useDebouncedMutation from '../useDebouncedMutation'; + +const mutation = graphql` + mutation updateCbcCommunityDataMutation( + $input: EditCbcProjectCommunitiesInput! + ) { + editCbcProjectCommunities(input: $input) { + cbcProjectCommunities { + communitiesSourceDataId + cbcId + communitiesSourceDataByCommunitiesSourceDataId { + geographicNameId + economicRegion + regionalDistrict + bcGeographicName + } + } + } + } +`; + +const useUpdateCbcCommunityDataMutationMutation = () => + useDebouncedMutation( + mutation, + () => 'An error occurred while attempting to update the cbc data.' + ); + +export { mutation, useUpdateCbcCommunityDataMutationMutation }; diff --git a/db/deploy/mutations/edit_cbc_project_communities.sql b/db/deploy/mutations/edit_cbc_project_communities.sql index 24f151aeed..bd2b2115cf 100644 --- a/db/deploy/mutations/edit_cbc_project_communities.sql +++ b/db/deploy/mutations/edit_cbc_project_communities.sql @@ -6,20 +6,21 @@ $$ declare _community_id int; begin + -- Archive community ids that belong to _project_id + update ccbc_public.cbc_project_communities + set archived_at = now() + where cbc_id = _project_id + and archived_at is null + and communities_source_data_id = any(_community_ids_to_archive); + -- Insert new community ids into ccbc_public.cbc_project_communities table foreach _community_id in array _community_ids_to_add loop - insert into ccbc_public.cbc_project_communities (project_id, community_id) + insert into ccbc_public.cbc_project_communities (cbc_id, communities_source_data_id) values (_project_id, _community_id); end loop; - -- Archive community ids that belong to _project_id - update ccbc_public.cbc_project_communities - set archived = true - where project_id = _project_id - and community_id = any(_community_ids_to_archive); - - return query select * from ccbc_public.cbc_project_communities where project_id = _project_id; + return query select * from ccbc_public.cbc_project_communities where cbc_id = _project_id and archived_at is null; end; $$ language plpgsql volatile; From b9d8e7c96d348515f99a3b3b8644a3dad618fa6b Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Thu, 22 Aug 2024 11:05:18 -0400 Subject: [PATCH 08/32] feat: section community source data behaves similar to quick edit --- .../theme/fields/ArrayLocationDataField.tsx | 45 ++++--- .../widgets/custom/CommunitySourceWidget.tsx | 2 +- app/pages/analyst/cbc/[cbcId].tsx | 28 +++-- .../analyst/cbc/[cbcId]/edit/[section].tsx | 118 ++++++++++++++++-- 4 files changed, 149 insertions(+), 44 deletions(-) diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx index afcb0af38e..52b2447571 100644 --- a/app/lib/theme/fields/ArrayLocationDataField.tsx +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -1,15 +1,25 @@ import { ArrayFieldTemplateProps } from '@rjsf/utils'; import React from 'react'; +import styled from 'styled-components'; + +const StyledDiv = styled.div` + display: flex; + flex-direction: row; + justify-content: space-between; +`; const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { const { items, onAddClick, canAdd, formContext } = props; const deleteCommunitySource = formContext?.deleteCommunitySource as Function; - // const addCommunitySource = formContext?.addCommunitySource as Function; - - // const handleAddClick = () => { - // const newItems = items.map() - // } + const handleClearTopCommunity = () => { + if ( + formContext?.handleClearTopCommunity && + formContext?.handleClearTopCommunity instanceof Function + ) { + formContext?.handleClearTopCommunity(); + } + }; return ( <> @@ -17,24 +27,24 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => {
{index === 0 ? (
-
+ {element.children} {canAdd && ( - + <> + + + )} -
+
) : ( -
+ {element.children} -
+ )}
))} diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index 8160485168..a9d3264261 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -111,7 +111,7 @@ const CommunitySourceWidget: React.FC = (props) => { return option.value === val.value; }} getOptionLabel={(option) => { - return option.label; + return option.label ?? ''; }} value={selectedGeographicName} onChange={(e, val, reason) => { diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index d1eb8a295d..4ac0fde723 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -107,6 +107,19 @@ const Cbc = ({ const [addedCommunities, setAddedCommunities] = useState([]); const [removedCommunities, setRemovedCommunities] = useState([]); + const handleClearTopCommunity = useCallback(() => { + setFormData((prevFormData) => ({ + ...prevFormData, + locations: { + ...prevFormData.locations, + communitySourceData: [ + {}, + ...prevFormData.locations.communitySourceData.slice(1), + ], + }, + })); + }, [setFormData]); + const addCommunity = (communityId) => { setAddedCommunities((prevList) => [...prevList, communityId]); }; @@ -138,18 +151,8 @@ const Cbc = ({ const communitySourceArray = formPayload.locations .communitySourceData as Array; const communitySourceArrayLength = - formPayload.locations.communitySourceData.length; + formPayload.locations.communitySourceData?.length; if (communitySourceArray[communitySourceArrayLength - 1] === undefined) { - console.log({ - ...formPayload, - locations: { - ...formPayload.locations, - communitySourceData: [ - {}, - ...communitySourceArray.slice(0, communitySourceArrayLength - 1), - ], - }, - }); if (communitySourceArray[0]) addCommunity(communitySourceArray[0].geographicNameId); return { @@ -277,7 +280,6 @@ const Cbc = ({ }; const handleUpdateCommunitySource = useCallback(() => { - console.log(addedCommunities, removedCommunities); updateCbcCommunitySourceData({ variables: { input: { @@ -314,6 +316,7 @@ const Cbc = ({ jsonData: { ...formData.tombstone, ...formData.projectType, + ...formData.locations, ...updatedLocationsAndCounts, ...formData.funding, ...formData.eventsAndDates, @@ -463,6 +466,7 @@ const Cbc = ({ query.cbcByRowId.cbcProjectCommunitiesByCbcId.nodes, addCommunitySource: addCommunity, deleteCommunitySource: removeCommunity, + handleClearTopCommunity, }} formData={formData} handleChange={(e) => { diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index e7f341fa72..928a2f4e33 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -7,7 +7,7 @@ import { RelayProps, withRelay } from 'relay-nextjs'; import { graphql } from 'relay-runtime'; import review from 'formSchema/analyst/cbc/review'; import { ProjectTheme } from 'components/Analyst/Project'; -import { useCallback, useMemo, useState } from 'react'; +import { useCallback, useMemo, useEffect, useState } from 'react'; import { useRouter } from 'next/router'; import editUiSchema from 'formSchema/uiSchema/cbc/editUiSchema'; import { FormBase } from 'components/Form'; @@ -18,6 +18,7 @@ import { ChangeModal } from 'components/Analyst'; import { useUpdateCbcDataAndInsertChangeRequest } from 'schema/mutations/cbc/updateCbcDataAndInsertChangeReason'; import { createCbcSchemaData } from 'utils/schemaUtils'; import ArrayLocationFieldTemplate from 'lib/theme/fields/ArrayLocationDataField'; +import { useUpdateCbcCommunityDataMutationMutation } from 'schema/mutations/cbc/updateCbcCommunityData'; import customValidate, { CBC_WARN_COLOR } from 'utils/cbcCustomValidator'; const getCbcSectionQuery = graphql` @@ -38,7 +39,7 @@ const getCbcSectionQuery = graphql` } } } - cbcProjectCommunitiesByCbcId { + cbcProjectCommunitiesByCbcId(filter: { archivedAt: { isNull: true } }) { nodes { communitiesSourceDataByCommunitiesSourceDataId { economicRegion @@ -75,21 +76,110 @@ const EditCbcSection = ({ const [updateFormData] = useUpdateCbcDataAndInsertChangeRequest(); const [changeReason, setChangeReason] = useState(null); const [formData, setFormData] = useState(null); + const [addedCommunities, setAddedCommunities] = useState([]); + const [removedCommunities, setRemovedCommunities] = useState([]); + const [dataBySection, setDataBySection] = useState({}); const { cbcDataByCbcId, rowId, cbcProjectCommunitiesByCbcId } = cbcByRowId; const { jsonData, rowId: cbcDataRowId } = cbcDataByCbcId.edges[0].node; - const cbcCommunitiesData = - cbcProjectCommunitiesByCbcId.nodes?.map( - (node) => node.communitiesSourceDataByCommunitiesSourceDataId - ) || []; - const dataBySection = createCbcSchemaData({ - ...jsonData, - cbcCommunitiesData, - }); + // const dataBySection = createCbcSchemaData({ + // ...jsonData, + // cbcCommunitiesData, + // }); + + useEffect(() => { + const cbcCommunitiesData = + cbcProjectCommunitiesByCbcId.nodes?.map( + (node) => node.communitiesSourceDataByCommunitiesSourceDataId + ) || []; + setDataBySection( + createCbcSchemaData({ + ...jsonData, + cbcCommunitiesData, + }) + ); + }, [jsonData, cbcProjectCommunitiesByCbcId]); const changeModal = useModal(); + const addCommunity = (communityId) => { + setAddedCommunities((prevList) => [...prevList, communityId]); + }; + + const removeCommunity = (communityId) => { + console.log(communityId); + setRemovedCommunities((prevList) => [...prevList, communityId]); + const indexOfRemovedCommunity = + dataBySection.locations.communitySourceData.findIndex( + (community) => community.geographicNameId === communityId + ); + setDataBySection({ + ...dataBySection, + locations: { + ...dataBySection.locations, + communitySourceData: [ + ...dataBySection.locations.communitySourceData.slice( + 0, + indexOfRemovedCommunity + ), + ...dataBySection.locations.communitySourceData.slice( + indexOfRemovedCommunity + 1 + ), + ], + }, + }); + }; + + const handleAddClick = (formPayload) => { + const communitySourceArray = formPayload.communitySourceData as Array; + const communitySourceArrayLength = formPayload.communitySourceData?.length; + if (communitySourceArray[communitySourceArrayLength - 1] === undefined) { + if (communitySourceArray[0]) + addCommunity(communitySourceArray[0].geographicNameId); + return { + ...formPayload, + communitySourceData: [ + {}, + ...communitySourceArray.slice(0, communitySourceArrayLength - 1), + ], + }; + } + return formPayload; + }; + + const [updateCbcCommunitySourceData] = + useUpdateCbcCommunityDataMutationMutation(); + + const handleOnChange = (e) => { + setFormData({ + ...dataBySection, + [section]: handleAddClick(e.formData), + }); + }; + + const handleUpdateCommunitySource = useCallback(() => { + updateCbcCommunitySourceData({ + variables: { + input: { + _projectId: query?.cbcByRowId?.cbcDataByCbcId?.edges[0].node.rowId, + _communityIdsToAdd: addedCommunities, + _communityIdsToArchive: removedCommunities, + }, + }, + debounceKey: 'cbc_update_community_source_data', + onCompleted: () => { + setAddedCommunities([]); + setRemovedCommunities([]); + }, + }); + }, [ + addedCommunities, + removedCommunities, + updateCbcCommunitySourceData, + query, + ]); + const handleChangeRequestModal = (e) => { changeModal.open(); setFormData({ ...dataBySection, [section]: e.formData }); @@ -169,6 +259,7 @@ const EditCbcSection = ({ }, debounceKey: 'cbc_update_section_data', onCompleted: () => { + handleUpdateCommunitySource(); router.push(`/analyst/cbc/${rowId}`); }, }); @@ -212,17 +303,18 @@ const EditCbcSection = ({ noValidate noHtml5Validate omitExtraData={false} + onChange={handleOnChange} formContext={{ economicRegions: allEconomicRegions, regionalDistrictsByEconomicRegion, geographicNamesByRegionalDistrict, allCommunitiesSourceData, + addCommunitySource: addCommunity, + deleteCommunitySource: removeCommunity, + handleClearTopCommunity: () => {}, errors: formErrors, showErrorHint: true, }} - onChange={(e) => { - setFormData({ ...dataBySection, [section]: e.formData }); - }} > - + )}
@@ -46,7 +58,7 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { ) : ( {element.children} - + )}
From 8406d37b43cfa78ab9e4ee9d7de81af779d056d0 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Thu, 22 Aug 2024 16:55:56 -0400 Subject: [PATCH 11/32] test: update tests so no longer failing --- app/cypress/e2e/analyst/cbc/[cbcId].cy.js | 3 ++- app/pages/analyst/cbc/[cbcId].tsx | 5 ++++- app/pages/analyst/cbc/[cbcId]/edit/[section].tsx | 2 ++ app/tests/pages/analyst/cbc/[cbcId].test.tsx | 6 +++++- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/app/cypress/e2e/analyst/cbc/[cbcId].cy.js b/app/cypress/e2e/analyst/cbc/[cbcId].cy.js index ef90f32d1f..671acc21af 100644 --- a/app/cypress/e2e/analyst/cbc/[cbcId].cy.js +++ b/app/cypress/e2e/analyst/cbc/[cbcId].cy.js @@ -16,7 +16,8 @@ describe('The cbc project view', () => { cy.contains('h1', 'Project 1'); cy.contains('h2', 'Tombstone'); cy.contains('h2', 'Project type'); - cy.contains('h2', 'Locations and counts'); + cy.contains('h2', 'Locations'); + cy.contains('h2', 'Counts'); cy.contains('h2', 'Funding'); cy.contains('h2', 'Events and dates'); cy.contains('h2', 'Miscellaneous'); diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index dc44da203f..b1e732a232 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -311,6 +311,7 @@ const Cbc = ({ economicRegions, ...updatedLocationsAndCounts } = formData.locationsAndCounts; + const { projectLocations } = formData.locations; updateFormData({ variables: { inputCbcData: { @@ -319,7 +320,7 @@ const Cbc = ({ jsonData: { ...formData.tombstone, ...formData.projectType, - ...formData.locations, + projectLocations, ...updatedLocationsAndCounts, ...formData.funding, ...formData.eventsAndDates, @@ -495,6 +496,8 @@ const Cbc = ({ setChangeReason(null); setFormData(baseFormData); setEditMode(false); + setAddedCommunities([]); + setRemovedCommunities([]); changeModal.close(); }} value={changeReason} diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index d4e7d8a357..1821fbbbdd 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -231,6 +231,7 @@ const EditCbcSection = ({ economicRegions, ...updatedLocationsAndCounts } = formData.locationsAndCounts; + const { projectLocations } = formData.locations; updateFormData({ variables: { inputCbcData: { @@ -239,6 +240,7 @@ const EditCbcSection = ({ jsonData: { ...formData.tombstone, ...formData.projectType, + projectLocations, ...updatedLocationsAndCounts, ...formData.funding, ...formData.eventsAndDates, diff --git a/app/tests/pages/analyst/cbc/[cbcId].test.tsx b/app/tests/pages/analyst/cbc/[cbcId].test.tsx index facb934c74..72ec3546a3 100644 --- a/app/tests/pages/analyst/cbc/[cbcId].test.tsx +++ b/app/tests/pages/analyst/cbc/[cbcId].test.tsx @@ -91,6 +91,7 @@ const mockQueryPayload = { geographicType: 'Geographic Type 1', regionalDistrict: 'Regional District 1', bcGeographicName: 'BC Geographic Name 1', + rowId: 1, }, }, { @@ -100,6 +101,7 @@ const mockQueryPayload = { geographicType: 'Geographic Type 2', regionalDistrict: 'Regional District 2', bcGeographicName: 'BC Geographic Name 2', + rowId: 2, }, }, { @@ -109,6 +111,7 @@ const mockQueryPayload = { geographicType: 'Geographic Type 2', regionalDistrict: 'Regional District 1', bcGeographicName: 'BC Geographic Name 3', + rowId: 3, }, }, ], @@ -205,7 +208,8 @@ describe('Cbc', () => { expect(screen.getByText('Tombstone')).toBeInTheDocument(); expect(screen.getByText('Project type')).toBeInTheDocument(); - expect(screen.getByText('Locations and counts')).toBeInTheDocument(); + expect(screen.getByText('Locations')).toBeInTheDocument(); + expect(screen.getByText('Counts')).toBeInTheDocument(); expect(screen.getByText('Funding')).toBeInTheDocument(); expect(screen.getByText('Events and dates')).toBeInTheDocument(); expect(screen.getByText('Miscellaneous')).toBeInTheDocument(); From 88f51e204d4055933da43d0b83237eccc850b3b3 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Thu, 22 Aug 2024 16:56:56 -0400 Subject: [PATCH 12/32] chore: style update --- .../theme/fields/ArrayLocationDataField.tsx | 22 ++++++++++++++----- .../widgets/custom/CommunitySourceWidget.tsx | 6 ++--- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx index 3b4063e886..b15740c99d 100644 --- a/app/lib/theme/fields/ArrayLocationDataField.tsx +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -2,11 +2,13 @@ import { ArrayFieldTemplateProps } from '@rjsf/utils'; import React from 'react'; import styled from 'styled-components'; import Button from '@button-inc/bcgov-theme/Button'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faTrash } from '@fortawesome/free-solid-svg-icons'; const StyledDiv = styled.div` display: flex; flex-direction: row; - justify-content: space-between; + gap: 6px; align-items: center; `; @@ -53,12 +55,18 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { )} -
+
) : ( {element.children} - { // get the value of the community source id @@ -71,8 +79,12 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { element.onDropIndexClick(element.index); }} > - Remove - + + )} diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index 4162fb195a..6a0a2ca447 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -67,7 +67,7 @@ const CommunitySourceWidget: React.FC = (props) => { setSelectedEconomicRegion(val); } }} - style={{ width: '300px' }} + style={{ width: '200px' }} value={selectedEconomicRegion} options={economicRegionOptions} getOptionLabel={(option) => option} @@ -78,7 +78,7 @@ const CommunitySourceWidget: React.FC = (props) => { { if (reason === 'clear') { setSelectedRegionalDistrict(null); @@ -102,7 +102,7 @@ const CommunitySourceWidget: React.FC = (props) => { ( )} From 395b9370290a117b619ba99bf56a1077f3957bbe Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Fri, 23 Aug 2024 09:49:32 -0400 Subject: [PATCH 13/32] chore: reduce duplication and increase coverage --- app/pages/analyst/cbc/[cbcId].tsx | 39 ++---- .../analyst/cbc/[cbcId]/edit/[section].tsx | 38 ++---- app/tests/utils/schemaUtils.test.ts | 116 ++++++++++++++++++ app/utils/schemaUtils.ts | 50 ++++++++ 4 files changed, 184 insertions(+), 59 deletions(-) create mode 100644 app/tests/utils/schemaUtils.test.ts diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index b1e732a232..d2753e7a1d 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -16,7 +16,12 @@ import reviewUiSchema from 'formSchema/uiSchema/cbc/reviewUiSchema'; import editUiSchema from 'formSchema/uiSchema/cbc/editUiSchema'; import { useFeature } from '@growthbook/growthbook-react'; import CbcTheme from 'components/Analyst/CBC/CbcTheme'; -import { createCbcSchemaData } from 'utils/schemaUtils'; +import { + createCbcSchemaData, + generateGeographicNamesByRegionalDistrict, + generateRegionalDistrictsByEconomicRegion, + getAllEconomicRegionNames, +} from 'utils/schemaUtils'; import customValidate, { CBC_WARN_COLOR } from 'utils/cbcCustomValidator'; import CbcRecordLock from 'components/Analyst/CBC/CbcRecordLock'; import useModal from 'lib/helpers/useModal'; @@ -182,41 +187,15 @@ const Cbc = ({ const allCommunitiesSourceData = query.allCommunitiesSourceData.nodes; const geographicNamesByRegionalDistrict = useMemo(() => { - const regionalDistrictGeographicNamesDict = {}; - allCommunitiesSourceData.forEach((community) => { - const { regionalDistrict, bcGeographicName, geographicNameId } = - community; - if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { - regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); - } - regionalDistrictGeographicNamesDict[regionalDistrict].add({ - label: bcGeographicName, - value: geographicNameId, - }); - }); - return regionalDistrictGeographicNamesDict; + return generateGeographicNamesByRegionalDistrict(allCommunitiesSourceData); }, [allCommunitiesSourceData]); const regionalDistrictsByEconomicRegion = useMemo(() => { - const economicRegionRegionalDistrictsDict = {}; - allCommunitiesSourceData.forEach((community) => { - const { economicRegion, regionalDistrict } = community; - if (!economicRegionRegionalDistrictsDict[economicRegion]) { - economicRegionRegionalDistrictsDict[economicRegion] = new Set(); - } - economicRegionRegionalDistrictsDict[economicRegion].add(regionalDistrict); - }); - - return economicRegionRegionalDistrictsDict; + return generateRegionalDistrictsByEconomicRegion(allCommunitiesSourceData); }, [allCommunitiesSourceData]); const allEconomicRegions = useMemo(() => { - const economicRegionsSet = new Set(); - allCommunitiesSourceData.forEach((community) => { - const { economicRegion } = community; - economicRegionsSet.add(economicRegion); - }); - return [...economicRegionsSet]; + return getAllEconomicRegionNames(allCommunitiesSourceData); }, [allCommunitiesSourceData]); const cbcCommunitiesData = useMemo(() => { diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 1821fbbbdd..fbbd3d988c 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -16,7 +16,12 @@ import { RJSFSchema } from '@rjsf/utils'; import useModal from 'lib/helpers/useModal'; import { ChangeModal } from 'components/Analyst'; import { useUpdateCbcDataAndInsertChangeRequest } from 'schema/mutations/cbc/updateCbcDataAndInsertChangeReason'; -import { createCbcSchemaData } from 'utils/schemaUtils'; +import { + createCbcSchemaData, + generateGeographicNamesByRegionalDistrict, + generateRegionalDistrictsByEconomicRegion, + getAllEconomicRegionNames, +} from 'utils/schemaUtils'; import ArrayLocationFieldTemplate from 'lib/theme/fields/ArrayLocationDataField'; import { useUpdateCbcCommunityDataMutationMutation } from 'schema/mutations/cbc/updateCbcCommunityData'; import customValidate, { CBC_WARN_COLOR } from 'utils/cbcCustomValidator'; @@ -185,40 +190,15 @@ const EditCbcSection = ({ const allCommunitiesSourceData = query.allCommunitiesSourceData.nodes; const geographicNamesByRegionalDistrict = useMemo(() => { - const regionalDistrictGeographicNamesDict = {}; - allCommunitiesSourceData.forEach((community) => { - const { regionalDistrict, bcGeographicName, geographicNameId } = - community; - if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { - regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); - } - regionalDistrictGeographicNamesDict[regionalDistrict].add({ - label: bcGeographicName, - value: geographicNameId, - }); - }); - return regionalDistrictGeographicNamesDict; + return generateGeographicNamesByRegionalDistrict(allCommunitiesSourceData); }, [allCommunitiesSourceData]); const regionalDistrictsByEconomicRegion = useMemo(() => { - const districtByEconomicRegionDict = {}; - allCommunitiesSourceData.forEach((community) => { - const { economicRegion, regionalDistrict } = community; - if (!districtByEconomicRegionDict[economicRegion]) { - districtByEconomicRegionDict[economicRegion] = new Set(); - } - districtByEconomicRegionDict[economicRegion].add(regionalDistrict); - }); - return districtByEconomicRegionDict; + return generateRegionalDistrictsByEconomicRegion(allCommunitiesSourceData); }, [allCommunitiesSourceData]); const allEconomicRegions = useMemo(() => { - const economicRegionsSet = new Set(); - allCommunitiesSourceData.forEach((community) => { - const { economicRegion } = community; - economicRegionsSet.add(economicRegion); - }); - return [...economicRegionsSet]; + return getAllEconomicRegionNames(allCommunitiesSourceData); }, [allCommunitiesSourceData]); const theme = { ...ProjectTheme }; diff --git a/app/tests/utils/schemaUtils.test.ts b/app/tests/utils/schemaUtils.test.ts new file mode 100644 index 0000000000..e3e63c5f72 --- /dev/null +++ b/app/tests/utils/schemaUtils.test.ts @@ -0,0 +1,116 @@ +import { + generateGeographicNamesByRegionalDistrict, + generateRegionalDistrictsByEconomicRegion, + getAllEconomicRegionNames, +} from '../../utils/schemaUtils'; + +describe('generateGeographicNamesByRegionalDistrict', () => { + it('should return an empty array if no communities are provided', () => { + const result = generateGeographicNamesByRegionalDistrict([]); + expect(result).toEqual({}); + }); + + it('should return a dict of geographic names grouped by regional district', () => { + const communities = [ + { + bcGeographicName: 'Community 1', + geographicNameId: 1, + regionalDistrict: 'Regional District 1', + economicRegion: 'Economic Region 1', + }, + { + bcGeographicName: 'Community 2', + geographicNameId: 2, + regionalDistrict: 'Regional District 1', + economicRegion: 'Economic Region 2', + }, + { + bcGeographicName: 'Community 3', + geographicNameId: 3, + regionalDistrict: 'Regional District 2', + economicRegion: 'Economic Region 1', + }, + ]; + + const result = generateGeographicNamesByRegionalDistrict(communities); + expect(result).toEqual({ + 'Regional District 1': new Set([ + { label: 'Community 1', value: 1 }, + { label: 'Community 2', value: 2 }, + ]), + 'Regional District 2': new Set([{ label: 'Community 3', value: 3 }]), + }); + }); +}); + +describe('generateRegionalDistrictsByEconomicRegion', () => { + it('should return an empty array if no communities are provided', () => { + const result = generateRegionalDistrictsByEconomicRegion([]); + expect(result).toEqual({}); + }); + + it('should return a dict of regional districts grouped by economic region', () => { + const communities = [ + { + bcGeographicName: 'Community 1', + geographicNameId: 1, + regionalDistrict: 'Regional District 1', + economicRegion: 'Economic Region 1', + }, + { + bcGeographicName: 'Community 2', + geographicNameId: 2, + regionalDistrict: 'Regional District 4', + economicRegion: 'Economic Region 2', + }, + { + bcGeographicName: 'Community 3', + geographicNameId: 3, + regionalDistrict: 'Regional District 2', + economicRegion: 'Economic Region 1', + }, + ]; + + const result = generateRegionalDistrictsByEconomicRegion(communities); + expect(result).toEqual({ + 'Economic Region 1': new Set([ + 'Regional District 1', + 'Regional District 2', + ]), + 'Economic Region 2': new Set(['Regional District 4']), + }); + }); +}); + +describe('getAllEconomicRegionNames', () => { + it('should return an empty array if no communities are provided', () => { + const result = getAllEconomicRegionNames([]); + expect(result).toEqual([]); + }); + + it('should return an array of unique economic region names', () => { + const communities = [ + { + bcGeographicName: 'Community 1', + geographicNameId: 1, + regionalDistrict: 'Regional District 1', + economicRegion: 'Economic Region 1', + }, + { + bcGeographicName: 'Community 2', + geographicNameId: 2, + regionalDistrict: 'Regional District 1', + economicRegion: 'Economic Region 2', + }, + { + bcGeographicName: 'Community 3', + geographicNameId: 3, + regionalDistrict: 'Regional District 2', + economicRegion: 'Economic Region 1', + }, + ]; + + const result = getAllEconomicRegionNames(communities); + expect(result).toEqual(['Economic Region 1', 'Economic Region 2']); + }); +}); diff --git a/app/utils/schemaUtils.ts b/app/utils/schemaUtils.ts index 03092d78fc..b6472d7467 100644 --- a/app/utils/schemaUtils.ts +++ b/app/utils/schemaUtils.ts @@ -147,3 +147,53 @@ export const createCbcSchemaData = (jsonData) => { return dataBySection; }; + +type CommunitySourceData = { + readonly bcGeographicName: string; + readonly geographicNameId: number; + readonly regionalDistrict: string | null; + readonly economicRegion: string | null; +}; + +export const generateGeographicNamesByRegionalDistrict = ( + allCommunitiesSourceData: readonly CommunitySourceData[] +) => { + const regionalDistrictGeographicNamesDict = {}; + allCommunitiesSourceData.forEach((community) => { + const { regionalDistrict, bcGeographicName, geographicNameId } = community; + if (!regionalDistrictGeographicNamesDict[regionalDistrict]) { + regionalDistrictGeographicNamesDict[regionalDistrict] = new Set(); + } + regionalDistrictGeographicNamesDict[regionalDistrict].add({ + label: bcGeographicName, + value: geographicNameId, + }); + }); + return regionalDistrictGeographicNamesDict; +}; + +export const generateRegionalDistrictsByEconomicRegion = ( + allCommunitiesSourceData: readonly CommunitySourceData[] +) => { + const economicRegionRegionalDistrictsDict = {}; + allCommunitiesSourceData.forEach((community) => { + const { economicRegion, regionalDistrict } = community; + if (!economicRegionRegionalDistrictsDict[economicRegion]) { + economicRegionRegionalDistrictsDict[economicRegion] = new Set(); + } + economicRegionRegionalDistrictsDict[economicRegion].add(regionalDistrict); + }); + + return economicRegionRegionalDistrictsDict; +}; + +export const getAllEconomicRegionNames = ( + allCommunitiesSourceData: readonly CommunitySourceData[] +) => { + const economicRegionsSet = new Set(); + allCommunitiesSourceData.forEach((community) => { + const { economicRegion } = community; + economicRegionsSet.add(economicRegion); + }); + return [...economicRegionsSet]; +}; From f363acd1a0a2be189bf03f51b42623adc22efc78 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Fri, 23 Aug 2024 10:59:32 -0400 Subject: [PATCH 14/32] test: add test for cbcid --- .../theme/fields/ArrayLocationDataField.tsx | 7 +- app/tests/pages/analyst/cbc/[cbcId].test.tsx | 146 +++++++++++++++++- 2 files changed, 151 insertions(+), 2 deletions(-) diff --git a/app/lib/theme/fields/ArrayLocationDataField.tsx b/app/lib/theme/fields/ArrayLocationDataField.tsx index b15740c99d..9b66867b65 100644 --- a/app/lib/theme/fields/ArrayLocationDataField.tsx +++ b/app/lib/theme/fields/ArrayLocationDataField.tsx @@ -41,7 +41,11 @@ const ArrayLocationFieldTemplate = (props: ArrayFieldTemplateProps) => { {element.children} {canAdd && ( <> - + Add { {element.children} From 7c810e3ace1a19e3da2217f28b9dd2a5dd3c0236 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Mon, 26 Aug 2024 15:56:29 -0400 Subject: [PATCH 23/32] feat: disable previously selected options --- .../widgets/custom/CommunitySourceWidget.tsx | 19 ++++++++++++++++++- app/pages/analyst/cbc/[cbcId].tsx | 5 +---- .../analyst/cbc/[cbcId]/edit/[section].tsx | 7 +++---- 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index ae700ba417..f6420163a1 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -1,5 +1,5 @@ import { WidgetProps } from '@rjsf/utils'; -import { useCallback, useEffect, useState } from 'react'; +import { useCallback, useEffect, useMemo, useState } from 'react'; import Autocomplete from '@mui/material/Autocomplete'; import { TextField } from '@mui/material'; import styled from 'styled-components'; @@ -53,10 +53,22 @@ const CommunitySourceWidget: React.FC = (props) => { }); }, [geographicNameId, bcGeographicName, economicRegion, regionalDistrict]); + const selectedGeographicNameIdList = useMemo(() => { + return [ + ...formContext.cbcCommunitiesData.map( + (community) => + community.communitiesSourceDataByCommunitiesSourceDataId + .geographicNameId + ), + ...formContext.addedCommunities, + ]; + }, [formContext.cbcCommunitiesData, formContext.addedCommunities]); + const clearWidget = useCallback(() => { setSelectedEconomicRegion(null); setSelectedRegionalDistrict(null); setSelectedGeographicName({ value: null, label: '' }); + // check if the form value has been touched, and if so clear it if (Object.keys(value).length > 0) { onChange({}); } @@ -72,6 +84,10 @@ const CommunitySourceWidget: React.FC = (props) => { const regionalDistrictOptions = formContext.regionalDistrictsByEconomicRegion; const geographicNameOptions = formContext.geographicNamesByRegionalDistrict; + const isGeographicNameOptionDisabled = (option) => { + return selectedGeographicNameIdList.includes(option.value); + }; + const getGeographicNameOptions = (selectedRegDis, selEcoReg) => { if (!selectedRegDis && !selEcoReg) { return []; @@ -166,6 +182,7 @@ const CommunitySourceWidget: React.FC = (props) => { isOptionEqualToValue={(option, val) => { return option.value === val.value; }} + getOptionDisabled={isGeographicNameOptionDisabled} getOptionLabel={(option) => { return option.label ?? ''; }} diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 8395e72009..fa0073c1cb 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -114,8 +114,6 @@ const Cbc = ({ const [addedCommunities, setAddedCommunities] = useState([]); const [removedCommunities, setRemovedCommunities] = useState([]); const [responseCommunityData, setResponseCommunityData] = useState([]); - const [handleClearTopCommunity, setHandleClearTopCommunity] = - useState(null); const addCommunity = (communityId) => { setAddedCommunities((prevList) => [...prevList, communityId]); @@ -445,10 +443,9 @@ const Cbc = ({ economicRegions: allEconomicRegions, cbcCommunitiesData: query.cbcByRowId.cbcProjectCommunitiesByCbcId.nodes, + addedCommunities, addCommunitySource: addCommunity, deleteCommunitySource: removeCommunity, - handleClearTopCommunity, - setHandleClearTopCommunity, }} formData={formData} handleChange={(e) => { diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 69abd89755..ead772c070 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -85,8 +85,6 @@ const EditCbcSection = ({ const [addedCommunities, setAddedCommunities] = useState([]); const [removedCommunities, setRemovedCommunities] = useState([]); const [dataBySection, setDataBySection] = useState({}); - const [handleClearTopCommunity, setHandleClearTopCommunity] = - useState(null); const { cbcDataByCbcId, rowId, cbcProjectCommunitiesByCbcId } = cbcByRowId; const { jsonData, rowId: cbcDataRowId } = cbcDataByCbcId.edges[0].node; @@ -294,8 +292,9 @@ const EditCbcSection = ({ deleteCommunitySource: removeCommunity, errors: formErrors, showErrorHint: true, - handleClearTopCommunity, - setHandleClearTopCommunity, + cbcCommunitiesData: + query.cbcByRowId.cbcProjectCommunitiesByCbcId.nodes, + addedCommunities, }} > From 45bfde296eddfbe5659270df07defa78e7b2e666 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Mon, 26 Aug 2024 16:11:14 -0400 Subject: [PATCH 24/32] test: update testing for changes --- app/lib/theme/widgets/custom/CommunitySourceWidget.tsx | 1 + app/tests/components/Form/CommunitySourceWidget.test.tsx | 2 ++ app/tests/utils/schemaUtils.test.ts | 2 ++ 3 files changed, 5 insertions(+) diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index f6420163a1..1f0c7b3b3b 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -212,6 +212,7 @@ const CommunitySourceWidget: React.FC = (props) => { e.preventDefault(); clearWidget(); }} + data-testid="clear-community-button" > Clear diff --git a/app/tests/components/Form/CommunitySourceWidget.test.tsx b/app/tests/components/Form/CommunitySourceWidget.test.tsx index 9951c29300..9228033d65 100644 --- a/app/tests/components/Form/CommunitySourceWidget.test.tsx +++ b/app/tests/components/Form/CommunitySourceWidget.test.tsx @@ -46,6 +46,8 @@ const renderStaticLayout = (schema: RJSFSchema, uiSchema: RJSFSchema) => { geographicNamesByRegionalDistrict: { 'Regional District 1': [{ label: 'Geographic Name 1', value: 1 }], }, + cbcCommunitiesData: [], + addedCommunities: [1], }} /> ); diff --git a/app/tests/utils/schemaUtils.test.ts b/app/tests/utils/schemaUtils.test.ts index e3e63c5f72..74b5961307 100644 --- a/app/tests/utils/schemaUtils.test.ts +++ b/app/tests/utils/schemaUtils.test.ts @@ -34,6 +34,8 @@ describe('generateGeographicNamesByRegionalDistrict', () => { const result = generateGeographicNamesByRegionalDistrict(communities); expect(result).toEqual({ + 'Economic Region 1': new Set(), + 'Economic Region 2': new Set(), 'Regional District 1': new Set([ { label: 'Community 1', value: 1 }, { label: 'Community 2', value: 2 }, From 9c0c906e4b17c9e6e5105903bcfee4a74a7c0dc1 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 27 Aug 2024 09:47:40 -0400 Subject: [PATCH 25/32] fix: empty communities are not saved --- db/deploy/mutations/edit_cbc_project_communities.sql | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/db/deploy/mutations/edit_cbc_project_communities.sql b/db/deploy/mutations/edit_cbc_project_communities.sql index edc6aa365f..31b8fbabf6 100644 --- a/db/deploy/mutations/edit_cbc_project_communities.sql +++ b/db/deploy/mutations/edit_cbc_project_communities.sql @@ -15,10 +15,12 @@ begin -- Insert new community ids into ccbc_public.cbc_project_communities table foreach _community_id in array _community_ids_to_add - loop - insert into ccbc_public.cbc_project_communities (cbc_id, communities_source_data_id) - values (_project_id, _community_id); - end loop; + loop + if _community_id is not null then + insert into ccbc_public.cbc_project_communities (cbc_id, communities_source_data_id) + values (_project_id, _community_id); + end if; + end loop; return query select * from ccbc_public.cbc_project_communities where cbc_id = _project_id and archived_at is null; From a1c6927b67f89e81683716e0de8a39a4b0fd080d Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 27 Aug 2024 09:48:11 -0400 Subject: [PATCH 26/32] fix: geographic name options are by economic region and regional district --- .../widgets/custom/CommunitySourceWidget.tsx | 10 ++++--- .../Form/CommunitySourceWidget.test.tsx | 5 +++- app/tests/utils/schemaUtils.test.ts | 27 ++++++++++++++----- app/utils/schemaUtils.ts | 20 +++++++++----- 4 files changed, 44 insertions(+), 18 deletions(-) diff --git a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx index 1f0c7b3b3b..e1d42d46ee 100644 --- a/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx +++ b/app/lib/theme/widgets/custom/CommunitySourceWidget.tsx @@ -93,12 +93,12 @@ const CommunitySourceWidget: React.FC = (props) => { return []; } - if (!selectedRegDis && geographicNameOptions[selEcoReg]) { - return [...geographicNameOptions[selEcoReg]]; + if (!selectedRegDis && geographicNameOptions[selEcoReg]['null']) { + return [...geographicNameOptions[selEcoReg]['null']]; } - if (geographicNameOptions[selectedRegDis]) { - return [...geographicNameOptions[selectedRegDis]]; + if (geographicNameOptions[selEcoReg][selectedRegDis]) { + return [...geographicNameOptions[selEcoReg][selectedRegDis]]; } return []; }; @@ -114,6 +114,8 @@ const CommunitySourceWidget: React.FC = (props) => { clearWidget(); } if (e) { + setSelectedRegionalDistrict(null); + setSelectedGeographicName({ value: null, label: '' }); setSelectedEconomicRegion(val); } }} diff --git a/app/tests/components/Form/CommunitySourceWidget.test.tsx b/app/tests/components/Form/CommunitySourceWidget.test.tsx index 9228033d65..1cb811acc9 100644 --- a/app/tests/components/Form/CommunitySourceWidget.test.tsx +++ b/app/tests/components/Form/CommunitySourceWidget.test.tsx @@ -44,7 +44,10 @@ const renderStaticLayout = (schema: RJSFSchema, uiSchema: RJSFSchema) => { 'Economic Region 1': ['Regional District 1'], }, geographicNamesByRegionalDistrict: { - 'Regional District 1': [{ label: 'Geographic Name 1', value: 1 }], + 'Economic Region 1': { + 'Regional District 1': [{ label: 'Geographic Name 1', value: 1 }], + null: [], + }, }, cbcCommunitiesData: [], addedCommunities: [1], diff --git a/app/tests/utils/schemaUtils.test.ts b/app/tests/utils/schemaUtils.test.ts index 74b5961307..47bd2048f8 100644 --- a/app/tests/utils/schemaUtils.test.ts +++ b/app/tests/utils/schemaUtils.test.ts @@ -30,17 +30,24 @@ describe('generateGeographicNamesByRegionalDistrict', () => { regionalDistrict: 'Regional District 2', economicRegion: 'Economic Region 1', }, + { + bcGeographicName: 'Community 4', + geographicNameId: 4, + regionalDistrict: null, + economicRegion: 'Economic Region 1', + }, ]; const result = generateGeographicNamesByRegionalDistrict(communities); expect(result).toEqual({ - 'Economic Region 1': new Set(), - 'Economic Region 2': new Set(), - 'Regional District 1': new Set([ - { label: 'Community 1', value: 1 }, - { label: 'Community 2', value: 2 }, - ]), - 'Regional District 2': new Set([{ label: 'Community 3', value: 3 }]), + 'Economic Region 1': { + 'Regional District 1': new Set([{ label: 'Community 1', value: 1 }]), + 'Regional District 2': new Set([{ label: 'Community 3', value: 3 }]), + null: new Set([{ label: 'Community 4', value: 4 }]), + }, + 'Economic Region 2': { + 'Regional District 1': new Set([{ label: 'Community 2', value: 2 }]), + }, }); }); }); @@ -71,6 +78,12 @@ describe('generateRegionalDistrictsByEconomicRegion', () => { regionalDistrict: 'Regional District 2', economicRegion: 'Economic Region 1', }, + { + bcGeographicName: 'Community 4', + geographicNameId: 4, + regionalDistrict: null, + economicRegion: 'Economic Region 1', + }, ]; const result = generateRegionalDistrictsByEconomicRegion(communities); diff --git a/app/utils/schemaUtils.ts b/app/utils/schemaUtils.ts index 6da49dea20..f09e69e0db 100644 --- a/app/utils/schemaUtils.ts +++ b/app/utils/schemaUtils.ts @@ -168,20 +168,27 @@ export const generateGeographicNamesByRegionalDistrict = ( } = community; if (geographicNamesDict[economicRegion] === undefined) { - geographicNamesDict[economicRegion] = new Set(); + geographicNamesDict[economicRegion] = {}; } - if (geographicNamesDict[regionalDistrict] === undefined) { - geographicNamesDict[regionalDistrict] = new Set(); + if ( + geographicNamesDict[economicRegion] === undefined && + !regionalDistrict + ) { + geographicNamesDict[economicRegion]['null'] = new Set(); + } + + if (geographicNamesDict[economicRegion][regionalDistrict] === undefined) { + geographicNamesDict[economicRegion][regionalDistrict] = new Set(); } if (regionalDistrict === null) { - geographicNamesDict[economicRegion].add({ + geographicNamesDict[economicRegion]['null'].add({ label: bcGeographicName, value: geographicNameId, }); } else { - geographicNamesDict[regionalDistrict].add({ + geographicNamesDict[economicRegion][regionalDistrict].add({ label: bcGeographicName, value: geographicNameId, }); @@ -199,7 +206,8 @@ export const generateRegionalDistrictsByEconomicRegion = ( if (!economicRegionRegionalDistrictsDict[economicRegion]) { economicRegionRegionalDistrictsDict[economicRegion] = new Set(); } - economicRegionRegionalDistrictsDict[economicRegion].add(regionalDistrict); + if (regionalDistrict) + economicRegionRegionalDistrictsDict[economicRegion].add(regionalDistrict); }); return economicRegionRegionalDistrictsDict; From 35a85ee778573f92f526c8bff124c79abd40b43c Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 27 Aug 2024 11:50:48 -0400 Subject: [PATCH 27/32] fix: cleanup of [section] to remove dataBySection --- .../analyst/cbc/[cbcId]/edit/[section].tsx | 50 ++++++++++++------- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index ead772c070..21c18b6348 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -84,7 +84,6 @@ const EditCbcSection = ({ const [formData, setFormData] = useState(null); const [addedCommunities, setAddedCommunities] = useState([]); const [removedCommunities, setRemovedCommunities] = useState([]); - const [dataBySection, setDataBySection] = useState({}); const { cbcDataByCbcId, rowId, cbcProjectCommunitiesByCbcId } = cbcByRowId; const { jsonData, rowId: cbcDataRowId } = cbcDataByCbcId.edges[0].node; @@ -94,7 +93,7 @@ const EditCbcSection = ({ cbcProjectCommunitiesByCbcId.nodes?.map( (node) => node.communitiesSourceDataByCommunitiesSourceDataId ) || []; - setDataBySection( + setFormData( createCbcSchemaData({ ...jsonData, cbcCommunitiesData, @@ -111,19 +110,19 @@ const EditCbcSection = ({ const removeCommunity = (communityId) => { setRemovedCommunities((prevList) => [...prevList, communityId]); const indexOfRemovedCommunity = - dataBySection.locations.communitySourceData.findIndex( + formData.locations?.communitySourceData?.findIndex( (community) => community.geographicNameId === communityId ); - setDataBySection({ - ...dataBySection, + setFormData({ + ...formData, locations: { - ...dataBySection.locations, + ...formData.locations, communitySourceData: [ - ...dataBySection.locations.communitySourceData.slice( + ...formData.locations.communitySourceData.slice( 0, indexOfRemovedCommunity ), - ...dataBySection.locations.communitySourceData.slice( + ...formData.locations.communitySourceData.slice( indexOfRemovedCommunity + 1 ), ], @@ -134,6 +133,21 @@ const EditCbcSection = ({ const handleAddClick = (formPayload) => { const communitySourceArray = formPayload.communitySourceData as Array; const communitySourceArrayLength = formPayload.communitySourceData?.length; + console.log( + formPayload, + communitySourceArray, + communitySourceArrayLength, + communitySourceArray[communitySourceArrayLength - 1] === undefined, + { + ...formPayload, + communitySourceData: [ + {}, + // setRowId to make widget readonly + { ...communitySourceArray[0], rowId: true }, + ...communitySourceArray.slice(1, communitySourceArrayLength - 1), + ], + } + ); if (communitySourceArray[communitySourceArrayLength - 1] === undefined) { if (communitySourceArray[0]) addCommunity(communitySourceArray[0].geographicNameId); @@ -154,10 +168,12 @@ const EditCbcSection = ({ useUpdateCbcCommunityDataMutationMutation(); const handleOnChange = (e) => { - setFormData({ - ...dataBySection, - [section]: handleAddClick(e.formData), - }); + if (section === 'locations') { + setFormData({ + ...formData, + [section]: handleAddClick(e.formData), + }); + } else setFormData({ ...formData, [section]: e.formData }); }; const handleUpdateCommunitySource = useCallback(() => { @@ -184,7 +200,7 @@ const EditCbcSection = ({ const handleChangeRequestModal = (e) => { changeModal.open(); - setFormData({ ...dataBySection, [section]: e.formData }); + setFormData({ ...formData, [section]: e.formData }); }; const allCommunitiesSourceData = query.allCommunitiesSourceData.nodes; @@ -265,16 +281,16 @@ const EditCbcSection = ({ ); const formErrors = useMemo( - () => - validateSection(formData || dataBySection, review.properties[section]), - [dataBySection, formData, section, validateSection] + () => validateSection(formData, review.properties[section]), + [formData, section, validateSection] ); + console.log(formData?.[section]); return ( Date: Tue, 27 Aug 2024 11:55:29 -0400 Subject: [PATCH 28/32] chore: remove console log --- app/pages/analyst/cbc/[cbcId]/edit/[section].tsx | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 21c18b6348..5a41067041 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -133,21 +133,6 @@ const EditCbcSection = ({ const handleAddClick = (formPayload) => { const communitySourceArray = formPayload.communitySourceData as Array; const communitySourceArrayLength = formPayload.communitySourceData?.length; - console.log( - formPayload, - communitySourceArray, - communitySourceArrayLength, - communitySourceArray[communitySourceArrayLength - 1] === undefined, - { - ...formPayload, - communitySourceData: [ - {}, - // setRowId to make widget readonly - { ...communitySourceArray[0], rowId: true }, - ...communitySourceArray.slice(1, communitySourceArrayLength - 1), - ], - } - ); if (communitySourceArray[communitySourceArrayLength - 1] === undefined) { if (communitySourceArray[0]) addCommunity(communitySourceArray[0].geographicNameId); @@ -284,7 +269,6 @@ const EditCbcSection = ({ () => validateSection(formData, review.properties[section]), [formData, section, validateSection] ); - console.log(formData?.[section]); return ( From b3a101c68f6ee5351f335e872b8583a8391dbce8 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 27 Aug 2024 13:14:53 -0400 Subject: [PATCH 29/32] fix: 500 error when visiting non-locations page --- app/pages/analyst/cbc/[cbcId]/edit/[section].tsx | 5 +++-- .../pages/analyst/cbc/[cbcId]/[section].test.tsx | 11 ++++++----- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 5a41067041..943f2f2c80 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -266,15 +266,16 @@ const EditCbcSection = ({ ); const formErrors = useMemo( - () => validateSection(formData, review.properties[section]), + () => validateSection(formData ?? {}, review.properties[section]), [formData, section, validateSection] ); + console.log(formData); return ( { changeRequestPending: 'No', projectTitle: 'Project 1', projectDescription: 'Description 1', + applicantContractualName: 'Test project contractual name', currentOperatingName: 'Internet company 1', federalFundingSource: 'ISED-CTI', projectType: 'Transport', transportProjectType: 'Fibre', - applicantContractualName: 'Test project contractual name', projectLocations: 'Location 1', indigenousCommunities: 5, householdCount: null, @@ -411,6 +411,7 @@ describe('EditCbcSection', () => { proposedStartDate: '2020-07-01T00:00:00.000Z', proposedCompletionDate: '2023-03-31T00:00:00.000Z', dateAnnounced: '2019-07-02T00:00:00.000Z', + projectMilestoneCompleted: 0.75, milestoneComments: 'Requested extension to March 31, 2024', primaryNewsRelease: 'https://www.somethingmadeup.ca/en/innovation-science-economic-development/internet.html', From b00c779f18121b7da06f2e9b008d1fb8ceec86ab Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 27 Aug 2024 13:32:31 -0400 Subject: [PATCH 30/32] chore: gosh darn console logs --- app/pages/analyst/cbc/[cbcId]/edit/[section].tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx index 943f2f2c80..f145d03996 100644 --- a/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx +++ b/app/pages/analyst/cbc/[cbcId]/edit/[section].tsx @@ -269,7 +269,6 @@ const EditCbcSection = ({ () => validateSection(formData ?? {}, review.properties[section]), [formData, section, validateSection] ); - console.log(formData); return ( From c0a0ab36b97c1f0e92e162ec4631bc1afea17c95 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Tue, 27 Aug 2024 16:30:35 -0400 Subject: [PATCH 31/32] chore: update returned data to include rowId --- app/schema/mutations/cbc/updateCbcCommunityData.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/schema/mutations/cbc/updateCbcCommunityData.ts b/app/schema/mutations/cbc/updateCbcCommunityData.ts index 9d944fb08b..81b81e83e0 100644 --- a/app/schema/mutations/cbc/updateCbcCommunityData.ts +++ b/app/schema/mutations/cbc/updateCbcCommunityData.ts @@ -15,6 +15,7 @@ const mutation = graphql` economicRegion regionalDistrict bcGeographicName + rowId } } } From 485e00df7d92c2370a1dccab1cf62298699e1669 Mon Sep 17 00:00:00 2001 From: CCBC Service Account <116113628+ccbc-service-account@users.noreply.github.com> Date: Tue, 27 Aug 2024 20:55:48 +0000 Subject: [PATCH 32/32] chore: release v1.186.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ db/sqitch.plan | 1 + package.json | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bb06336a8..c420de8543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +# [1.186.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.185.0...v1.186.0) (2024-08-27) + +### Bug Fixes + +- 500 error when visiting non-locations page ([b3a101c](https://github.com/bcgov/CONN-CCBC-portal/commit/b3a101c68f6ee5351f335e872b8583a8391dbce8)) +- add permissions for executing function ([6defd8f](https://github.com/bcgov/CONN-CCBC-portal/commit/6defd8f09689bdf6f9cfc320294c2953ca70e182)) +- cleanup of [section] to remove dataBySection ([35a85ee](https://github.com/bcgov/CONN-CCBC-portal/commit/35a85ee778573f92f526c8bff124c79abd40b43c)) +- clear button and inputs show correct values at all times ([abd9f20](https://github.com/bcgov/CONN-CCBC-portal/commit/abd9f20a15b2d15564a114f13f18ac4faa8b8542)) +- empty communities are not saved ([9c0c906](https://github.com/bcgov/CONN-CCBC-portal/commit/9c0c906e4b17c9e6e5105903bcfee4a74a7c0dc1)) +- geographic name options are by economic region and regional district ([a1c6927](https://github.com/bcgov/CONN-CCBC-portal/commit/a1c6927b67f89e81683716e0de8a39a4b0fd080d)) +- geographic name options are populated with only economic region ([40b9438](https://github.com/bcgov/CONN-CCBC-portal/commit/40b9438ef9793d5b83c178d9901e0eb587c8771d)) +- update on save instead of after refresh ([56b42f2](https://github.com/bcgov/CONN-CCBC-portal/commit/56b42f246d06b423ad279333199115fcccec035a)) +- user correct rowId ([378dcfc](https://github.com/bcgov/CONN-CCBC-portal/commit/378dcfcebef4b01a48e8da34ae92b03f3c2d3269)) + +### Features + +- add and remove community source behaves as expected ([ce70b29](https://github.com/bcgov/CONN-CCBC-portal/commit/ce70b29e6f100032f9c92b6f8d7023d18d0e10a3)) +- added community sources are read only ([39e3834](https://github.com/bcgov/CONN-CCBC-portal/commit/39e3834d2b75707dd0cdf0ebcc1379b3ede77869)) +- community source data is now displayed properly ([b8e811e](https://github.com/bcgov/CONN-CCBC-portal/commit/b8e811e456700752e0d18c9ca18ea835915c790c)) +- disable previously selected options ([7c810e3](https://github.com/bcgov/CONN-CCBC-portal/commit/7c810e3ace1a19e3da2217f28b9dd2a5dd3c0236)) +- section community source data behaves similar to quick edit ([b9d8e7c](https://github.com/bcgov/CONN-CCBC-portal/commit/b9d8e7c96d348515f99a3b3b8644a3dad618fa6b)) +- style buttons for add, remove, and clear ([35698ff](https://github.com/bcgov/CONN-CCBC-portal/commit/35698ff6ee1164d2a9e90828ce3d1a79193ecf24)) + # [1.185.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.184.2...v1.185.0) (2024-08-26) ### Features diff --git a/db/sqitch.plan b/db/sqitch.plan index 013bffe392..80852551b9 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -647,3 +647,4 @@ tables/cbc_add_fk_update_constraint 2024-07-11T20:32:11Z Rafael Solorzano <61289 @1.184.2 2024-08-26T20:34:36Z CCBC Service Account # release v1.184.2 @1.185.0 2024-08-26T22:26:30Z CCBC Service Account # release v1.185.0 mutations/edit_cbc_project_communities 2024-08-21T15:16:56Z Anthony Bushara # Add and delete project communities to a cbc project +@1.186.0 2024-08-27T20:55:46Z CCBC Service Account # release v1.186.0 diff --git a/package.json b/package.json index 3815d0eb01..aa86c8d79d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "CONN-CCBC-portal", - "version": "1.185.0", + "version": "1.186.0", "main": "index.js", "repository": "https://github.com/bcgov/CONN-CCBC-portal.git", "author": "Romer, Meherzad CITZ:EX ",